From 49f7996cd73950fb5ef4e77b5eeebebe2af581d9 Mon Sep 17 00:00:00 2001 From: Thomas Schneider <thomas@fsmpi.rwth-aachen.de> Date: Fri, 24 Feb 2023 13:54:01 +0100 Subject: [PATCH] guest-overlay: Always recreate squashfs without appending Without `-noappend`, we end up with an image containing `gast`, `gast_1`, `gast_2` etc. after running repeatedly. This way, it is always recreated and contains only what it is supposed to. --- guest-overlay/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/guest-overlay/tasks/main.yml b/guest-overlay/tasks/main.yml index e218016..8328442 100644 --- a/guest-overlay/tasks/main.yml +++ b/guest-overlay/tasks/main.yml @@ -43,6 +43,7 @@ - 1000 - -force-gid - 1000 + - -noappend delegate_to: localhost run_once: true tags: -- GitLab