File: prerm.sh

package info (click to toggle)
ntfy 2.11.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,364 kB
  • sloc: javascript: 16,782; makefile: 282; sh: 105; php: 21; python: 19
file content (14 lines) | stat: -rwxr-xr-x 349 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

# Stop systemd service
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