Removed functions that didn't do anything, like update vserver and check netflow...
authorFaiyaz Ahmed <faiyaza@cs.princeton.edu>
Tue, 29 Jul 2008 19:38:18 +0000 (19:38 +0000)
committerFaiyaz Ahmed <faiyaza@cs.princeton.edu>
Tue, 29 Jul 2008 19:38:18 +0000 (19:38 +0000)
pl_mop.sh

index 97dad39..a94afbf 100755 (executable)
--- 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
-