exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

taler-exchange.prerm (463B)


      1 #!/bin/sh
      2 
      3 set -e
      4 
      5 if [ -d /run/systemd/system ] && [ "$1" = remove ];
      6 then
      7     deb-systemd-invoke stop 'taler-exchange.target' >/dev/null || true
      8     deb-systemd-invoke stop 'taler-exchange.slice' >/dev/null || true
      9     # The optional sanctions checker is outside the product target and slice.
     10     deb-systemd-invoke stop 'taler-exchange-sanctionscheck.service' >/dev/null || true
     11 fi
     12 
     13 # Scripts generated by dh_installdeb are inserted below
     14 
     15 #DEBHELPER#
     16 
     17 exit 0