File: ifupdown-scripts-zg2.postrm

package info (click to toggle)
ifupdown-scripts-zg2 0.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 484 kB
  • ctags: 55
  • sloc: sh: 4,037; makefile: 37
file content (12 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

[ -n "$IUDSZG2DEBUG" ] && set -x

## Manually added instead of dh_installinit
## woody dh_installinit does not support --no-start
## this can be replaced by calling dh_installinit --no-start on sarge and sid
if [ "$1" = "purge" ] ; then
        update-rc.d ifupdown-scripts-zg2 remove defaults >/dev/null
fi
# End manually added section