1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-12-26 19:52:30 +01:00

chmod 600 for cache file

This commit is contained in:
Philipp Heckel 2021-12-09 14:07:09 -05:00
parent ee34770610
commit aacdda94e1

View file

@ -18,6 +18,7 @@ if [ "$1" = "configure" ] && [ -d /run/systemd/system ]; then
cachefile="$(cat "$configfile" | perl -n -e'/^\s*cache-file: ["'"'"']?([^"'"'"']+)["'"'"']?/ && print $1')" # Oh my, see #47 cachefile="$(cat "$configfile" | perl -n -e'/^\s*cache-file: ["'"'"']?([^"'"'"']+)["'"'"']?/ && print $1')" # Oh my, see #47
if [ -n "$cachefile" ]; then if [ -n "$cachefile" ]; then
chown ntfy.ntfy "$cachefile" || true chown ntfy.ntfy "$cachefile" || true
chmod 600 "$cachefile" || true
fi fi
fi fi