From 523e037900c7312ac6a549c3cd9ef0887dbd7674 Mon Sep 17 00:00:00 2001 From: Christian Meis Date: Wed, 5 Jan 2022 14:43:25 +0100 Subject: [PATCH] Switch from parentheses to nested if statements for the RPM scriptlets. --- scripts/postinst.sh | 48 +++++++++++++++++++++++---------------------- scripts/prerm.sh | 14 +++++++------ 2 files changed, 33 insertions(+), 29 deletions(-) diff --git a/scripts/postinst.sh b/scripts/postinst.sh index 4e47ea66..1a3b2764 100755 --- a/scripts/postinst.sh +++ b/scripts/postinst.sh @@ -6,33 +6,34 @@ set -e # # TODO: This is only tested on Debian. # -if ( [ "$1" = "configure" ] || [ "$1" = "1" ] ) && [ -d /run/systemd/system ]; then - # Create ntfy user/group - id ntfy >/dev/null 2>&1 || useradd --system --no-create-home ntfy - chown ntfy.ntfy /var/cache/ntfy - chmod 700 /var/cache/ntfy +if [ "$1" = "configure" ] || [ "$1" = "1" ]; then + if [ -d /run/systemd/system ]; then + # Create ntfy user/group + id ntfy >/dev/null 2>&1 || useradd --system --no-create-home ntfy + chown ntfy.ntfy /var/cache/ntfy + chmod 700 /var/cache/ntfy - # Hack to change permissions on cache file - configfile="/etc/ntfy/server.yml" - if [ -f "$configfile" ]; then - cachefile="$(cat "$configfile" | perl -n -e'/^\s*cache-file: ["'"'"']?([^"'"'"']+)["'"'"']?/ && print $1')" # Oh my, see #47 - if [ -n "$cachefile" ]; then - chown ntfy.ntfy "$cachefile" || true - chmod 600 "$cachefile" || true + # Hack to change permissions on cache file + configfile="/etc/ntfy/server.yml" + if [ -f "$configfile" ]; then + cachefile="$(cat "$configfile" | perl -n -e'/^\s*cache-file: ["'"'"']?([^"'"'"']+)["'"'"']?/ && print $1')" # Oh my, see #47 + if [ -n "$cachefile" ]; then + chown ntfy.ntfy "$cachefile" || true + chmod 600 "$cachefile" || true + fi fi - fi - # Restart services - systemctl --system daemon-reload >/dev/null || true - if systemctl is-active -q ntfy.service; then - echo "Restarting ntfy.service ..." - if [ -x /usr/bin/deb-systemd-invoke ]; then - deb-systemd-invoke try-restart ntfy.service >/dev/null || true - else - systemctl restart ntfy.service >/dev/null || true + # Restart services + systemctl --system daemon-reload >/dev/null || true + if systemctl is-active -q ntfy.service; then + echo "Restarting ntfy.service ..." + if [ -x /usr/bin/deb-systemd-invoke ]; then + deb-systemd-invoke try-restart ntfy.service >/dev/null || true + else + systemctl restart ntfy.service >/dev/null || true + 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 ..." if [ -x /usr/bin/deb-systemd-invoke ]; then 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 fi fi + fi fi diff --git a/scripts/prerm.sh b/scripts/prerm.sh index fc026191..f26af7a7 100755 --- a/scripts/prerm.sh +++ b/scripts/prerm.sh @@ -2,11 +2,13 @@ set -e # Stop systemd service -if [ -d /run/systemd/system ] && ( [ "$1" = remove ] || [ "$1" = "0" ] ); then - echo "Stopping ntfy.service ..." - if [ -x /usr/bin/deb-systemd-invoke ]; then - deb-systemd-invoke stop 'ntfy.service' >/dev/null || true - else - systemctl stop ntfy >/dev/null 2>&1 || true +if [ -d /run/systemd/system ]; then + if [ "$1" = remove ] || [ "$1" = "0" ]; then + echo "Stopping ntfy.service ..." + if [ -x /usr/bin/deb-systemd-invoke ]; then + deb-systemd-invoke stop 'ntfy.service' >/dev/null || true + else + systemctl stop ntfy >/dev/null 2>&1 || true + fi fi fi