aboutsummaryrefslogtreecommitdiff
path: root/DEBIAN/preinst
blob: 75ff57199e1877de96f8778dc6e31537ed71b228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html
thisservice=keepalive.service

case "${1}" in
   upgrade)
      # This preinst is being run before an upgrade.
      # $2 is old-version-number
      systemctl stop keepalive.service 1>/dev/null 2>&1
      ;;
   install)
      # Brand new installation of the package.
      [ ]
      ;;
esac

exit 0
bgstack15