source:
lmd/trunk/fuentes/debian/lmd-manager-gui.postinst
Last change on this file was 392, checked in by , 5 years ago | |
---|---|
File size: 354 bytes |
Line | |
---|---|
1 | #!/bin/sh |
2 | # postinst script for lmd-manager |
3 | # |
4 | # see: dh_installdeb(1) |
5 | |
6 | set -e |
7 | |
8 | |
9 | case "$1" in |
10 | configure) |
11 | n4d-modules enable-plugin /etc/n4d/conf.d/LmdManager || true |
12 | ;; |
13 | |
14 | abort-upgrade|abort-remove|abort-deconfigure) |
15 | ;; |
16 | |
17 | *) |
18 | echo "postinst called with unknown argument \`$1'" >&2 |
19 | exit 1 |
20 | ;; |
21 | esac |
22 | |
23 | #DEBHELPER# |
24 | |
25 | exit 0 |
Note: See TracBrowser
for help on using the repository browser.