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