Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ci/setup-cfengine-build-host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ if [ -f /etc/os-release ]; then
# and now perform the upgrade a second time after hopefully autoremove cleans up /boot partition of kernel files that cause failure
DEBIAN_FRONTEND=noninteractive apt upgrade --yes
DEBIAN_FRONTEND=noninteractive apt autoremove --yes

echo "remove unattended-upgrades to increase reliability of apt operations in scripts"
DEBIAN_FRONTEND=noninteractive apt purge --yes unattended-upgrades

alias software='DEBIAN_FRONTEND=noninteractive apt install --yes'
alias erase-packages='DEBIAN_FRONTEND=noninteractive apt purge --yes'
elif grep -q suse /etc/os-release; then
Expand Down
Loading