Changeset 5387 for n4d-shutdowner-server
- Timestamp:
- Jun 29, 2017, 12:17:16 PM (4 years ago)
- Location:
- n4d-shutdowner-server/trunk/fuentes/debian
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
n4d-shutdowner-server/trunk/fuentes/debian/control
r5241 r5387 1 Source: lliurex-zero-shutdown1 Source: n4d-shutdowner-server 2 2 Section: admin 3 3 Priority: optional … … 7 7 Standards-Version: 3.9.5 8 8 9 Package: lliurex-zero-shutdown9 Package: n4d-shutdowner-server 10 10 Architecture: all 11 Depends: ${misc:Depends}, n map, n4d (>=0.112)12 Description: LliureX Shutdowner 13 - We can shutdown all pc's in local network11 Depends: ${misc:Depends}, n4d (>=0.112), lliurex-shutdowner-common 12 Description: LliureX Shutdowner server plugins 13 Plugins supporting lliurex shutdowner server functionality 14 14 15 15 -
n4d-shutdowner-server/trunk/fuentes/debian/n4d-shutdowner-server.install
r5386 r5387 1 lliurex-zero-shutdown.install-files/* /1 install-files/* / -
n4d-shutdowner-server/trunk/fuentes/debian/n4d-shutdowner-server.postinst
r5386 r5387 1 #!/bin/ bash1 #!/bin/sh 2 2 3 # N4D module must be enabled to make more easier 4 # the installation process 5 n4d-modules enable-plugin /etc/n4d/conf.d/Shutdowner 3 set -e 4 5 case "$1" in 6 configure) 7 8 n4d-modules enable-plugin /etc/n4d/conf.d/Shutdowner || true 9 10 ;; 11 12 abort-upgrade|abort-remove|abort-deconfigure) 13 ;; 14 15 *) 16 exit 1 17 ;; 18 esac 19 20 #DEBHELPER# 21 22 exit 0
Note: See TracChangeset
for help on using the changeset viewer.