Update config defs

This commit is contained in:
Eric Gullickson
2025-12-18 13:40:57 -06:00
parent 33e5797ae0
commit 7a2e11953a
3 changed files with 5 additions and 6 deletions

View File

@@ -57,9 +57,9 @@ inject_secret() {
rm -rf "$target_path"
fi
# Copy the secret file
# Copy the secret file (644 so container users can read)
cp "$source_path" "$target_path"
chmod 600 "$target_path"
chmod 644 "$target_path"
echo " OK: $file_name"
}