From d1951c143541932fec048c431ed79793c86a44af Mon Sep 17 00:00:00 2001 From: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Date: Sun, 10 Dec 2023 14:40:34 +0100 Subject: [PATCH] Update conf/mount_disk.sh: fix condition that creates the virtual disk --- conf/mount_disk.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/mount_disk.sh b/conf/mount_disk.sh index bcc4d7d..0c09ab1 100755 --- a/conf/mount_disk.sh +++ b/conf/mount_disk.sh @@ -1,7 +1,7 @@ #!/bin/bash -# If we're inside a container -if systemd-detect-virt -c -q +# If we're NOT inside a container +if ! systemd-detect-virt -c -q then data_dir=__DATA_DIR__ format=$1