sync

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

sync-httpd.prerm (159B)


      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 fi
      8 
      9 exit 0