1
1
Fork 1

Switch to apt and force true on incus install.

This commit is contained in:
Derek Smith 2023-12-19 09:51:11 -05:00
parent 8b6db37380
commit 0c6e00deb2
Signed by: farscapian
GPG Key ID: B443E530A14E1C90
1 changed files with 6 additions and 2 deletions

View File

@ -65,5 +65,9 @@ Architectures: $(dpkg --print-architecture)
Signed-By: /etc/apt/keyrings/zabbly.asc
EOF'
apt-get update
apt-get install incus -y --no-install-recommends
apt update
# we || true this here because installing incus fails.
# TODO see if this can be fixed by installing JUST the incus client.
# none of the systemd/daemon stuff is needed necessarily.
apt install incus -y --no-install-recommends || true