This commit is contained in:
2025-01-31 09:55:32 +01:00
parent 82d253b65b
commit aa54b0cc8b

View File

@@ -1,8 +1,8 @@
#!/bin/bash
apt-get -qq update
listUpgrades=`apt list --upgradable |grep upgradable |cut -d/ -f1`
listUpgrades=$(apt list --upgradable |grep upgradable |cut -d/ -f1)
echo $listUpgrades
echo "$listUpgrades"
echo "=============================="
execUpgrades="DEBIAN_FRONTEND=noninteractive apt-get --yes --assume-yes -o DPkg::options::=\"--force-confdef\" -o DPkg::options::=\"--force-confold\" --only-upgrade -qq install "$listUpgrades