You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
416 B
10 lines
416 B
#!/bin/sh -eux
|
|
|
|
# remove zypper locks on removed packages to avoid later dependency problems
|
|
any_package_locks=`zypper --non-interactive ll | grep package`;
|
|
|
|
if [ 'There are no package locks defined.' == "$any_package_locks" ]; then
|
|
echo 'There are no package locks defined. Doing nothing.';
|
|
else
|
|
zypper --non-interactive ll | grep package | awk -F\| '{ print $2 }' | xargs -n 20 zypper --non-interactive rl;
|
|
fi
|
|
|