summaryrefslogtreecommitdiff
path: root/debian/vyatta-cfg-vpn.postinst.in
blob: e56e2e8a5fd81887810e1f51054d3180659edd48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

prefix=@prefix@
exec_prefix=@exec_prefix@
sysconfdir=@sysconfdir@
bindir=@bindir@
sbindir=@sbindir@

# remove init of daemons that we start/stop
for init in openswan; do
  update-rc.d -f ${init} remove >/dev/null
done

# Local Variables:
# mode: shell-script
# sh-indentation: 4
# End: