Update update-lxcs.sh

This commit is contained in:
tteckster 2022-11-26 18:01:55 -05:00 committed by GitHub
parent a46082ffaa
commit a7f797ede2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ function update_container() {
pct config $container > temp
os=`awk '/^ostype/' temp | cut -d' ' -f2`
if [ "$os" == "alpine" ]; then
pct exec $container -- ash -c "apk update && apk upgrade -y"
pct exec $container -- ash -c "apk update && apk upgrade"
elif [ "$os" == "ubuntu" ] || [ "$os" == "debian" ] || [ "$os" == "devuan" ]; then
pct exec $container -- bash -c "apt-get update && apt-get upgrade -y && apt-get clean && apt-get --purge autoremove -y"
elif [ "$os" == "fedora" ]; then