File: postinst

package info (click to toggle)
fwctl 0.25-6
  • links: PTS
  • area: main
  • in suites: potato
  • size: 988 kB
  • ctags: 327
  • sloc: perl: 5,042; sh: 98; makefile: 57
file content (11 lines) | stat: -rw-r--r-- 301 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh
set -e

if [ "$1" = "configure" ]
then
  update-rc.d fwctl stop 90 0 1 6 . start 36 S . >/dev/null
  if [ -d /usr/doc -a ! -e /usr/doc/fwctl -a -d /usr/share/doc/fwctl ]; then
    echo "Pointing /usr/doc/fwctl/ to /usr/share/doc/fwctl/"
    ln -sf ../share/doc/fwctl /usr/doc/fwctl
  fi
fi