aboutsummaryrefslogtreecommitdiff
path: root/DEBIAN/preinst
blob: afa93504f30c5e3956f0c467cabb8c69160bf4c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# deb pre 2017-01-26
#https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html
thisservice=keepalive.service
{
case "${1}" in
   upgrade)
      # Upgrade. $2 is old-version-number.
      systemctl stop ${thiservice}
      ;;
   install)
      # New install.
      :
      ;;
esac
} 1>/dev/null 2>&1
exit 0
bgstack15