Switch from parentheses to nested if statements for the RPM scriptlets.

pull/86/head
Christian Meis 2022-01-05 14:43:25 +01:00
parent 88586c8f86
commit 523e037900
2 changed files with 33 additions and 29 deletions

View File

@ -6,33 +6,34 @@ set -e
# #
# TODO: This is only tested on Debian. # TODO: This is only tested on Debian.
# #
if ( [ "$1" = "configure" ] || [ "$1" = "1" ] ) && [ -d /run/systemd/system ]; then if [ "$1" = "configure" ] || [ "$1" = "1" ]; then
# Create ntfy user/group if [ -d /run/systemd/system ]; then
id ntfy >/dev/null 2>&1 || useradd --system --no-create-home ntfy # Create ntfy user/group
chown ntfy.ntfy /var/cache/ntfy id ntfy >/dev/null 2>&1 || useradd --system --no-create-home ntfy
chmod 700 /var/cache/ntfy chown ntfy.ntfy /var/cache/ntfy
chmod 700 /var/cache/ntfy
# Hack to change permissions on cache file # Hack to change permissions on cache file
configfile="/etc/ntfy/server.yml" configfile="/etc/ntfy/server.yml"
if [ -f "$configfile" ]; then if [ -f "$configfile" ]; 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 chmod 600 "$cachefile" || true
fi
fi fi
fi
# Restart services # Restart services
systemctl --system daemon-reload >/dev/null || true systemctl --system daemon-reload >/dev/null || true
if systemctl is-active -q ntfy.service; then if systemctl is-active -q ntfy.service; then
echo "Restarting ntfy.service ..." echo "Restarting ntfy.service ..."
if [ -x /usr/bin/deb-systemd-invoke ]; then if [ -x /usr/bin/deb-systemd-invoke ]; then
deb-systemd-invoke try-restart ntfy.service >/dev/null || true deb-systemd-invoke try-restart ntfy.service >/dev/null || true
else else
systemctl restart ntfy.service >/dev/null || true systemctl restart ntfy.service >/dev/null || true
fi
fi fi
fi if systemctl is-active -q ntfy-client.service; then
if systemctl is-active -q ntfy-client.service; then
echo "Restarting ntfy-client.service ..." echo "Restarting ntfy-client.service ..."
if [ -x /usr/bin/deb-systemd-invoke ]; then if [ -x /usr/bin/deb-systemd-invoke ]; then
deb-systemd-invoke try-restart ntfy-client.service >/dev/null || true deb-systemd-invoke try-restart ntfy-client.service >/dev/null || true
@ -40,4 +41,5 @@ if ( [ "$1" = "configure" ] || [ "$1" = "1" ] ) && [ -d /run/systemd/system ]; t
systemctl restart ntfy-client.service >/dev/null || true systemctl restart ntfy-client.service >/dev/null || true
fi fi
fi fi
fi
fi fi

View File

@ -2,11 +2,13 @@
set -e set -e
# Stop systemd service # Stop systemd service
if [ -d /run/systemd/system ] && ( [ "$1" = remove ] || [ "$1" = "0" ] ); then if [ -d /run/systemd/system ]; then
echo "Stopping ntfy.service ..." if [ "$1" = remove ] || [ "$1" = "0" ]; then
if [ -x /usr/bin/deb-systemd-invoke ]; then echo "Stopping ntfy.service ..."
deb-systemd-invoke stop 'ntfy.service' >/dev/null || true if [ -x /usr/bin/deb-systemd-invoke ]; then
else deb-systemd-invoke stop 'ntfy.service' >/dev/null || true
systemctl stop ntfy >/dev/null 2>&1 || true else
systemctl stop ntfy >/dev/null 2>&1 || true
fi
fi fi
fi fi