From c8409a00f4a322cdd1b4e3db629ff5402f13eb4b Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 19 May 2020 12:12:51 -0500 Subject: [PATCH] Fix perms on output directory --- roles/terraria/templates/backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/terraria/templates/backup.sh b/roles/terraria/templates/backup.sh index 8947a1b..e6a6709 100644 --- a/roles/terraria/templates/backup.sh +++ b/roles/terraria/templates/backup.sh @@ -21,7 +21,7 @@ if ! [ -d "$OUTDIR" ]; then fi fi # Enforce permissions on our output directory since the terraria user will need them -chown root.git "$OUTDIR" +chown root.ter-admin "$OUTDIR" chmod 770 "$OUTDIR" # Purge oldest backup if we need to