
Compass IP now is isolated so that during PXE process, a pxe-server IP is available and DHCP will have its own subnet and cobbler server owns the vip for that subnet. This only partially closes bug #1393957, further change will be maide in compass-core. So no "Closes-Bug" will be added in the message. Partial-bug: #1393957 Change-Id: I0d693f2958a33b5a093728dccf063e2114c7406b
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
#if $str($getVar('anamon_enabled','')) == "1"
|
|
|
|
## install anamon script
|
|
#if $getVar("compass_server","") != ""
|
|
wget -O /usr/local/sbin/anamon "http://$compass_server:$http_port/cobbler/aux/anamon"
|
|
#else
|
|
wget -O /usr/local/sbin/anamon "http://$server:$http_port/cobbler/aux/anamon"
|
|
#end if
|
|
## install anamon system service
|
|
cat << EOF > /etc/init.d/anamon.init
|
|
#raw
|
|
#!/bin/bash
|
|
## BEGIN INIT INFO
|
|
# Provides: anamon.init
|
|
# Default-Start: 3 5
|
|
# Default-Stop: 0 1 2 4 6
|
|
# Required-Start:
|
|
# Should-Start: $network
|
|
# Short-Description: Starts the cobbler anamon boot notification program
|
|
# Description: anamon runs the first time a machine is booted after
|
|
# installation.
|
|
## END INIT INFO
|
|
|
|
#
|
|
# anamon.init: Starts the cobbler post-install boot notification program
|
|
#
|
|
# chkconfig: 35 95 95
|
|
#
|
|
# description: anamon runs the first time a machine is booted after
|
|
# installation.
|
|
#
|
|
#end raw
|
|
#if $getVar("compass_server","") != ""
|
|
/usr/local/sbin/anamon --watchfile "/var/log/boot.log /var/log/messages /var/log/dmesg /var/log/anaconda.log" --name $name --server $compass_server --port $http_port --exit
|
|
#else
|
|
/usr/local/sbin/anamon --watchfile "/var/log/boot.log /var/log/messages /var/log/dmesg /var/log/anaconda.log" --name $name --server $server --port $http_port --exit
|
|
#end if
|
|
chkconfig anamon.init off
|
|
mv /etc/init.d/anamon.init /tmp/anamon.init
|
|
EOF
|
|
|
|
## adjust permissions
|
|
chmod 755 /etc/init.d/anamon.init /usr/local/sbin/anamon
|
|
test -d /selinux && restorecon /etc/init.d/anamon.init /usr/local/sbin/anamon
|
|
|
|
## enable the script
|
|
chkconfig anamon.init on
|
|
|
|
#end if
|