X-Git-Url: http://git.onelab.eu/?p=mom.git;a=blobdiff_plain;f=pl_mop.sh;fp=pl_mop.sh;h=a94afbfc04b62d302219f3942e44b7ec2e6f5caf;hp=97dad39f92b016e703789ebe004f9da327b52d0e;hb=e9973a891500bb929110ea7133a183c07c8bc422;hpb=b3a37e1107e9444789e32efa7641ed6321df32b6 diff --git a/pl_mop.sh b/pl_mop.sh index 97dad39..a94afbf 100755 --- a/pl_mop.sh +++ b/pl_mop.sh @@ -53,7 +53,7 @@ fix_etc_shadow() { # keep essential services running restart_services() { - for service in sshd pl_sshd swapmon nm proper ; do + for service in sshd pl_sshd swapmon nm fprobe-ulog codemux; do echo "* Checking $service" status=$(service $service status) if [ $? -ne 0 ] || echo $status 2>&1 | grep -q stopped ; then @@ -63,59 +63,6 @@ restart_services() { done } -# keep netflow running -restart_netflow() { - echo "* Checking netflow" - echo "sudo /sbin/service netflow restart" | su - pl_netflow - if [ $? -ne 0 ] ; then - echo "* Restarting netflow" - service netflow-init start - vserver pl_netflow start - echo "sudo /sbin/service netflow restart" | su - pl_netflow - fi -} - -# GPG keys are installed in /etc/pki/rpm-gpg by both the Boot Manager -# during initial installation, and by PlanetLabConf during daily -# updates. NodeUpdate imports the keys into the RPM database before -# running yum daily. vserver-reference copies and imports the keys -# into the reference images and system slices daily. The only parts of -# this process that are actually necessary, are the Boot Manager and -# vserver-reference. However, we do not want to force a re-install of -# all nodes, and we do not want to force an update of -# vserver-reference, so in the meantime, PlanetLabConf and NodeUpdate -# take care of getting the keys installed and imported in /, and this -# script takes care of getting them installed in the reference images -# and system slices, until we can get a new vserver-reference image -# pushed out. -update_vserver_reference() { - echo "* Updating VServer reference" - - shopt -s nullglob - - VROOTS="/vservers/vserver-reference /vservers/.vcache/* /vservers/${PLC_SLICE_PREFIX}_*" - - # Copy configuration files from host to slices - for file in \ - /etc/hosts /etc/resolv.conf /etc/yum.conf /etc/planetlab/node_id \ - /etc/planetlab/plc_config* /etc/planetlab/php/* \ - /etc/pki/rpm-gpg/* ; do - if [ -r $file ] ; then - for vroot in $VROOTS ; do - install -D -m 644 $file $vroot/$file - done - fi - done - - # (Re)install GPG signing keys - if [ -d /etc/pki/rpm-gpg ] ; then - for vroot in $VROOTS ; do - chroot $vroot rpm --allmatches -e gpg-pubkey || : - chroot $vroot rpm --import /etc/pki/rpm-gpg/* || : - done - fi -} - # kill all the processes running in slice contexts vkillall() { vps -A | awk '(int($2) > 1) { system("vkill -c " $2 " -s 9 " $1); }' @@ -241,7 +188,9 @@ kill_multi_nm(){ } # XXX kill zombie slices -# XXX reboot if boot state changes +run restart_services + + run kill_nonroot_nm run kill_nm_inslice @@ -252,11 +201,4 @@ run fix_vservers run fix_etc_shadow -run restart_services - -run restart_netflow - run kill_duplicate_ssh - -run update_vserver_reference -