Update update-lxcs.sh

This commit is contained in:
tteckster 2023-02-04 12:56:22 -05:00 committed by GitHub
parent d54683396e
commit b7e073b1c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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