14 lines
268 B
Plaintext
14 lines
268 B
Plaintext
![]() |
#!/bin/sh
|
||
|
# see: dh_installdeb(1)
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ "${1}" = "remove" ] || [ "${1}" = "upgrade" || [ "${1}" = "deconfigure" ]; then
|
||
|
update-alternatives --remove puppet-module-network \
|
||
|
/usr/share/puppet/modules.available/puppet-network
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|