source:
open-sysclone/trunk/build-area/open-sysclone-0.49_01/debian/postinst
@
647
Last change on this file since 647 was 647, checked in by , 5 years ago | |
---|---|
File size: 412 bytes |
Line | |
---|---|
1 | #!/bin/sh |
2 | |
3 | set -e |
4 | |
5 | case "$1" in |
6 | configure) |
7 | |
8 | |
9 | n4d-modules enable-plugin /etc/n4d/conf.d/OpenSysCloneExport || true |
10 | n4d-modules enable-plugin /etc/n4d/conf.d/OpenSysClone || true |
11 | n4d-modules enable-control OpenSysCloneExport || true |
12 | n4d-modules enable-control OpenSysClone || true |
13 | |
14 | |
15 | ;; |
16 | |
17 | abort-upgrade|abort-remove|abort-deconfigure) |
18 | ;; |
19 | |
20 | *) |
21 | exit 1 |
22 | ;; |
23 | esac |
24 | |
25 | #DEBHELPER# |
26 | |
27 | exit 0 |
28 |
Note: See TracBrowser
for help on using the repository browser.