1
1
Fork 1

Update project

This commit is contained in:
Derek Smith 2023-11-29 21:34:29 -05:00
parent 57e75a88ec
commit 3004a167c8
Signed by: farscapian
GPG Key ID: B443E530A14E1C90
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ cd "$(dirname "$0")"
. ./base.sh
bash -c "./stub_profile.sh --lxd-hostname=$BASE_IMAGE_VM_NAME"
bash -c "./stub_profile.sh --incus-hostname=$BASE_IMAGE_VM_NAME"
if incus list -q --project default | grep -q "$BASE_IMAGE_VM_NAME" ; then
incus delete -f "$BASE_IMAGE_VM_NAME" --project default

@ -1 +1 @@
Subproject commit 4a16abdf10e68b25cd846c7f6ceeb0055fbfb3d9
Subproject commit 52239974d4c339c34e553e2aff6678456194682c

View File

@ -23,12 +23,12 @@ sudo bash -c "$HOME/sovereign-stack/install_incus.sh"
sudo incus admin init --minimal
# add groups for docker and lxd
# add docker group
if ! grep -q "^docker:" /etc/group; then
sudo groupadd docker
fi
# add groups for docker and lxd
# add incus-admin group
if ! grep -q "^incus-admin:" /etc/group; then
sudo groupadd incus-admin
fi