File: postinst

package info (click to toggle)
policyrcd-script-zg2 0.1-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 332 kB
  • sloc: sh: 2,940; makefile: 10
file content (15 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -e

case "$1" in
  configure)
    update-alternatives \
      --install /usr/sbin/policy-rc.d policy-rc.d /usr/sbin/zg-policy-rc.d 10 \
      --slave /usr/share/man/man8/policy-rc.d.8.gz policy-rc.d.8.gz /usr/share/man/man8/zg-policy-rc.d.8.gz
    ;;
esac

#DEBHELPER#

exit 0