File: postinst

package info (click to toggle)
lintian 2.104.0
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 58,560 kB
  • sloc: perl: 36,857; javascript: 9,151; makefile: 3,888; sh: 3,204; ansic: 727; xml: 409; python: 65; java: 15; cpp: 9; tcl: 4; lisp: 3
file content (14 lines) | stat: -rw-r--r-- 365 bytes parent folder | download | duplicates (122)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

if [ -x "/etc/init.d/lsb-broken" ] ; then
    update-rc.d lsb-broken defaults >/dev/null
fi
if [ -x "/etc/init.d/no-lsb" ] ; then
    update-rc.d no-lsb defaults >/dev/null
fi
if [ -x "/etc/init.d/skeleton" ] ; then
    update-rc.d skeleton defaults >/dev/null
fi
if [ -x "/etc/init.d/lsb-other" ] ; then
    update-rc.d lsb-other defaults >/dev/null
fi