File: postinst

package info (click to toggle)
pppconfig 2.3.15.etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,392 kB
  • ctags: 82
  • sloc: perl: 1,460; sh: 152; makefile: 61
file content (14 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Postinst for pppconfig by John Hasler 1999-2005
# Any possessor of a copy of this program may treat it as if it
# were in the public domain.  I waive all rights.

set -e

if [ -x /usr/bin/update-menus ] ; then
    /usr/bin/update-menus
fi
update-rc.d dns-clean start 39 S . >/dev/null

exit 0