sync

Backup service to store encrypted wallet databases (experimental)
Log | Files | Refs | Submodules | README | LICENSE

sync-httpd.prerm (232B)


      1 #!/bin/sh
      2 
      3 set -e
      4 
      5 if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
      6         deb-systemd-invoke stop 'sync-httpd.service' >/dev/null || true
      7         deb-systemd-invoke stop 'sync-httpd2.service' >/dev/null || true
      8 fi
      9 
     10 exit 0