config is in mcollective 1.2.1+dfsg-2ubuntu1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/sh
MCOLLECTIVE_DEFAULT="/etc/default/mcollective"
set -e
. /usr/share/debconf/confmodule
# reread values from configuration
if [ -r "$MCOLLECTIVE_DEFAULT" ]; then
. $MCOLLECTIVE_DEFAULT
if [ "$RUN" = "yes" ]; then
db_set mcollective/start_on_boot true
else
db_set mcollective/start_on_boot false
fi
fi
db_input low mcollective/start_on_boot || true
db_go
db_stop
|