1
0
mirror of synced 2026-01-13 15:17:30 +00:00

2006-11-19 19:31:07 by steve

Move cfengine installation into a role-script.
  See #399152
This commit is contained in:
steve 2006-11-19 19:31:09 +00:00
parent 0aeea8306b
commit 95fca06a45
2 changed files with 4 additions and 69 deletions

View File

@ -1,57 +0,0 @@
#!/bin/sh
#
# This script installs CFengine upon the new system, if it is also
# installed on the Dom0.
#
# It must make sure that the server is not running before it exits
# otherwise the temporary mounted directory will not be unmountable.
#
prefix=$1
#
# Exit if cfagent is not installed
#
if [ ! -e /usr/sbin/cfagent ]; then
exit
fi
#
# Source our common functions
#
if [ -e /usr/lib/xen-tools/common.sh ]; then
. /usr/lib/xen-tools/common.sh
else
. ./hooks/common.sh
fi
#
# Log our start
#
logMessage Script $0 starting
#
# Install ssh
#
installDebianPackage ${prefix} cfengine2
#
# Make sure sshd isn't running, this will cause our unmounting of the
# disk image to fail..
#
chroot ${prefix} /etc/init.d/cfengine2 stop
#
# Copy cfengine update.conf & defaults from Dom0
#
cp /etc/cfengine/update.conf ${prefix}/etc/cfengine/
cp /etc/default/cfengine2 ${prefix}/etc/default/
#
# Log our finish
#
logMessage Script $0 finished

View File

@ -1,32 +1,24 @@
#!/bin/sh
#
# This script installs CFengine upon the new system, if it is also
# installed on the Dom0.
# This role installs CFengine upon the new guest system.
#
# It must make sure that the server is not running before it exits
# otherwise the temporary mounted directory will not be unmountable.
#
prefix=$1
#
# Exit if cfagent is not installed
#
if [ ! -e /usr/sbin/cfagent ]; then
exit
fi
#
# Source our common functions
# Source our common functions - this will let us install a Debian package.
#
if [ -e /usr/lib/xen-tools/common.sh ]; then
. /usr/lib/xen-tools/common.sh
else
. ./hooks/common.sh
echo "Installation problem"
fi
#
# Log our start
#