From 911e02cd1c17621a2562d1925d8ec572d5d41bc9 Mon Sep 17 00:00:00 2001 From: bp-sawyers Date: Fri, 18 Mar 2011 17:48:49 +0000 Subject: [PATCH] Removing add-on files that were copied from suse. Egan will rewrite them and put them back in. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9098 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- .../netboot/add-on/autogpfs/autogpfsc.suse | 191 ------------------ .../netboot/add-on/autogpfs/autogpfsd.suse | 127 ------------ .../xcat/netboot/add-on/torque/moab.suse | 112 ---------- .../share/xcat/netboot/add-on/torque/pbs.suse | 105 ---------- .../xcat/netboot/add-on/torque/pbs_mom.suse | 113 ----------- .../xcat/netboot/add-on/torque/pbs_sched.suse | 109 ---------- .../netboot/add-on/torque/pbs_server.suse | 116 ----------- 7 files changed, 873 deletions(-) delete mode 100755 xCAT-server/share/xcat/netboot/add-on/autogpfs/autogpfsc.suse delete mode 100755 xCAT-server/share/xcat/netboot/add-on/autogpfs/autogpfsd.suse delete mode 100755 xCAT-server/share/xcat/netboot/add-on/torque/moab.suse delete mode 100755 xCAT-server/share/xcat/netboot/add-on/torque/pbs.suse delete mode 100755 xCAT-server/share/xcat/netboot/add-on/torque/pbs_mom.suse delete mode 100755 xCAT-server/share/xcat/netboot/add-on/torque/pbs_sched.suse delete mode 100755 xCAT-server/share/xcat/netboot/add-on/torque/pbs_server.suse diff --git a/xCAT-server/share/xcat/netboot/add-on/autogpfs/autogpfsc.suse b/xCAT-server/share/xcat/netboot/add-on/autogpfs/autogpfsc.suse deleted file mode 100755 index aaca58461..000000000 --- a/xCAT-server/share/xcat/netboot/add-on/autogpfs/autogpfsc.suse +++ /dev/null @@ -1,191 +0,0 @@ -#! /bin/sh -# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. -# Copyright (c) 2001 IBM -# -# Author: Kurt Garloff -# Author: Egan Ford set local and overall rc status to -# rc_reset clear local rc status (overall remains) -# rc_exit exit appropriate to overall rc status -. /etc/rc.status - -# First reset status of this service -rc_reset - -# Return values acc. to LSB for all commands but status: -# 0 - success -# 1 - generic or unspecified error -# 2 - invalid or excess argument(s) -# 3 - unimplemented feature (e.g. "reload") -# 4 - insufficient privilege -# 5 - program is not installed -# 6 - program is not configured -# 7 - program is not running -# -# Note that starting an already running service, stopping -# or restarting a not-running service as well as the restart -# with force-reload (in case signalling is not supported) are -# considered a success. - -case "$1" in - start) - echo "Starting autoGPFS" - ## Start daemon with startproc(8). If this fails - ## the echo return value is set appropriate. - - # NOTE: startproc return 0, even if service is - # already running to match LSB spec. - - - lastexit=2 - while [ "$lastexit" = "2" ] - do - for i in $(echo $SERVERS | tr ',' ' ') - do - /usr/sbin/autogpfsc.pl $i $PORT 2>/dev/null - lastexit=$? - if [ "$lastexit" = "0" ] - then - break - fi - if [ "$lastexit" = "1" ] - then - break - fi - done - sleep 1 - done - - if [ "$lastexit" != "0" ] - then - BLOCK=no - fi - - sleep 5 - - if [ "$BLOCK" = "yes" ] - then - echo -n "Waiting on GPFS mounts..." - DOBLOCK=yes - fi - - while [ "$DOBLOCK" = "yes" ] - do - DOBLOCK=no - - for i in $( - grep "\bgpfs\b" /etc/fstab | \ - awk '{print $2}' - ) - do - mount | grep "\b/gpfs1\b" >/dev/null 2>&1 - if [ "$?" != "0" ] - then - DOBLOCK=yes - fi - done - - sleep 1 - done - - if [ "$BLOCK" = "yes" ] - then - echo "done" - fi - - echo -n "autoGPFS" - if [ "$lastexit" = "0" ] - then - true - else - false - fi - - # Remember status and be verbose - rc_status -v - ;; - stop) - echo -n "Shutting down GPFS" - ## Stop daemon with killproc(8) and if this fails - ## set echo the echo return value. - - /usr/lpp/mmfs/bin/mmshutdown - - # Remember status and be verbose - rc_status -v - ;; - restart) - ## Stop the service and regardless of whether it was - ## running or not, start it again. - $0 stop - $0 start - - # Remember status and be quiet - rc_status - ;; -# status) -# echo -n "Checking for autogpfsc: " -# ## Check status with checkproc(8), if process is running -# ## checkproc will return with exit status 0. -# -# # Status has a slightly different for the status command: -# # 0 - service running -# # 1 - service dead, but /var/run/ pid file exists -# # 2 - service dead, but /var/lock/ lock file exists -# # 3 - service not running -# -# # NOTE: checkproc returns LSB compliant status values. -# checkproc $AUTOGPFSC -# rc_status -v -# ;; - *) - echo "Usage: $0 {start|stop|restart}" - exit 1 - ;; -esac -rc_exit diff --git a/xCAT-server/share/xcat/netboot/add-on/autogpfs/autogpfsd.suse b/xCAT-server/share/xcat/netboot/add-on/autogpfs/autogpfsd.suse deleted file mode 100755 index bbf592c3a..000000000 --- a/xCAT-server/share/xcat/netboot/add-on/autogpfs/autogpfsd.suse +++ /dev/null @@ -1,127 +0,0 @@ -#! /bin/sh -# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. -# Copyright (c) 2001 IBM -# -# Author: Kurt Garloff -# Author: Egan Ford set local and overall rc status to -# rc_reset clear local rc status (overall remains) -# rc_exit exit appropriate to overall rc status -. /etc/rc.status - -# First reset status of this service -rc_reset - -# Return values acc. to LSB for all commands but status: -# 0 - success -# 1 - generic or unspecified error -# 2 - invalid or excess argument(s) -# 3 - unimplemented feature (e.g. "reload") -# 4 - insufficient privilege -# 5 - program is not installed -# 6 - program is not configured -# 7 - program is not running -# -# Note that starting an already running service, stopping -# or restarting a not-running service as well as the restart -# with force-reload (in case signalling is not supported) are -# considered a success. - -case "$1" in - start) - echo -n "Starting autogpfsd" - ## Start daemon with startproc(8). If this fails - ## the echo return value is set appropriate. - - # NOTE: startproc return 0, even if service is - # already running to match LSB spec. - startproc $AUTOGPFSD - - # Remember status and be verbose - rc_status -v - ;; - stop) - echo -n "Shutting down autogpfsd" - ## Stop daemon with killproc(8) and if this fails - ## set echo the echo return value. - - killproc -TERM $AUTOGPFSD - - # Remember status and be verbose - rc_status -v - ;; - restart) - ## Stop the service and regardless of whether it was - ## running or not, start it again. - $0 stop - $0 start - - # Remember status and be quiet - rc_status - ;; - status) - echo -n "Checking for autogpfsd: " - ## Check status with checkproc(8), if process is running - ## checkproc will return with exit status 0. - - # Status has a slightly different for the status command: - # 0 - service running - # 1 - service dead, but /var/run/ pid file exists - # 2 - service dead, but /var/lock/ lock file exists - # 3 - service not running - - # NOTE: checkproc returns LSB compliant status values. - checkproc $AUTOGPFSD - rc_status -v - ;; - *) - echo "Usage: $0 {start|stop|status|restart}" - exit 1 - ;; -esac -rc_exit diff --git a/xCAT-server/share/xcat/netboot/add-on/torque/moab.suse b/xCAT-server/share/xcat/netboot/add-on/torque/moab.suse deleted file mode 100755 index 3f6550dd7..000000000 --- a/xCAT-server/share/xcat/netboot/add-on/torque/moab.suse +++ /dev/null @@ -1,112 +0,0 @@ -#! /bin/sh -# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. -# Copyright (c) 2001 IBM -# -# Author: Kurt Garloff -# Author: Egan Ford set local and overall rc status to -# rc_reset clear local rc status (overall remains) -# rc_exit exit appropriate to overall rc status -. /etc/rc.status - -# First reset status of this service -rc_reset - -# Return values acc. to LSB for all commands but status: -# 0 - success -# 1 - generic or unspecified error -# 2 - invalid or excess argument(s) -# 3 - unimplemented feature (e.g. "reload") -# 4 - insufficient privilege -# 5 - program is not installed -# 6 - program is not configured -# 7 - program is not running -# -# Note that starting an already running service, stopping -# or restarting a not-running service as well as the restart -# with force-reload (in case signalling is not supported) are -# considered a success. - -case "$1" in - start) - echo -n "Starting MOAB Scheduler: " - if [ -r $MOAB_PREFIX/bin/moab ] - then - startproc $MOAB_PREFIX/bin/moab -C $MOAB_PREFIX/moab.cfg - elif [ -r $MOAB_PREFIX/sbin/moab ] - then - startproc $MOAB_PREFIX/sbin/moab -C $MOAB_PREFIX/moab.cfg - elif [ -r $MOAB_PREFIX/$ARCH/bin/moab ] - then - startproc $MOAB_PREFIX/$ARCH/bin/moab -C $MOAB_PREFIX/moab.cfg - elif [ -r $MOAB_PREFIX/$ARCH/sbin/moab ] - then - startproc $MOAB_PREFIX/$ARCH/sbin/moab -C $MOAB_PREFIX/moab.cfg - fi - rc_status -v - ;; - stop) - echo -n "Shutting down Moab: " - killproc moab - rc_status -v - ;; - restart) - ## Stop the service and regardless of whether it was - ## running or not, start it again. - $0 stop - $0 start - - # Remember status and be quiet - rc_status - ;; - status) - echo -n "Checking for moab: " - checkproc moab - rc_status -v - ;; - *) - echo "Usage: $0 {start|stop|status|restart}" - exit 1 - ;; -esac -rc_exit diff --git a/xCAT-server/share/xcat/netboot/add-on/torque/pbs.suse b/xCAT-server/share/xcat/netboot/add-on/torque/pbs.suse deleted file mode 100755 index f9dd9bd9b..000000000 --- a/xCAT-server/share/xcat/netboot/add-on/torque/pbs.suse +++ /dev/null @@ -1,105 +0,0 @@ -#! /bin/sh -# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. -# Copyright (c) 2001 IBM -# -# Author: Kurt Garloff -# Author: Egan Ford set local and overall rc status to -# rc_reset clear local rc status (overall remains) -# rc_exit exit appropriate to overall rc status -. /etc/rc.status - -# First reset status of this service -rc_reset - -# Return values acc. to LSB for all commands but status: -# 0 - success -# 1 - generic or unspecified error -# 2 - invalid or excess argument(s) -# 3 - unimplemented feature (e.g. "reload") -# 4 - insufficient privilege -# 5 - program is not installed -# 6 - program is not configured -# 7 - program is not running -# -# Note that starting an already running service, stopping -# or restarting a not-running service as well as the restart -# with force-reload (in case signalling is not supported) are -# considered a success. - -case "$1" in - start) - chkconfig -list pbs_mom 2>&1 | grep :on >/dev/null 2>&1 - test "$?" = "0" && /etc/init.d/pbs_mom start - chkconfig -list pbs_sched 2>&1 | grep :on >/dev/null 2>&1 - test "$?" = "0" && /etc/init.d/pbs_sched start - chkconfig -list pbs_server 2>&1 | grep :on >/dev/null 2>&1 - test "$?" = "0" && /etc/init.d/pbs_server start - ;; - stop) - /etc/init.d/pbs_mom stop - /etc/init.d/pbs_sched stop - /etc/init.d/pbs_server stop - ;; - restart) - /etc/init.d/pbs_mom stop - /etc/init.d/pbs_sched stop - /etc/init.d/pbs_server stop - chkconfig -list pbs_mom 2>&1 | grep :on >/dev/null 2>&1 - test "$?" = "0" && /etc/init.d/pbs_mom start - chkconfig -list pbs_sched 2>&1 | grep :on >/dev/null 2>&1 - test "$?" = "0" && /etc/init.d/pbs_sched start - chkconfig -list pbs_server 2>&1 | grep :on >/dev/null 2>&1 - test "$?" = "0" && /etc/init.d/pbs_server start - ;; - status) - checkproc pbs_server - checkproc pbs_mom - checkproc pbs_sched - rc_status -v - ;; - *) - echo "Usage: $0 {start|stop|status|restart}" - exit 1 - ;; -esac -rc_exit diff --git a/xCAT-server/share/xcat/netboot/add-on/torque/pbs_mom.suse b/xCAT-server/share/xcat/netboot/add-on/torque/pbs_mom.suse deleted file mode 100755 index 1990f39c2..000000000 --- a/xCAT-server/share/xcat/netboot/add-on/torque/pbs_mom.suse +++ /dev/null @@ -1,113 +0,0 @@ -#! /bin/sh -# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. -# Copyright (c) 2001 IBM -# -# Author: Kurt Garloff -# Author: Egan Ford set local and overall rc status to -# rc_reset clear local rc status (overall remains) -# rc_exit exit appropriate to overall rc status -. /etc/rc.status - -# First reset status of this service -rc_reset - -# Return values acc. to LSB for all commands but status: -# 0 - success -# 1 - generic or unspecified error -# 2 - invalid or excess argument(s) -# 3 - unimplemented feature (e.g. "reload") -# 4 - insufficient privilege -# 5 - program is not installed -# 6 - program is not configured -# 7 - program is not running -# -# Note that starting an already running service, stopping -# or restarting a not-running service as well as the restart -# with force-reload (in case signalling is not supported) are -# considered a success. - -case "$1" in - start) - if [ -r /etc/security/access.conf.BOOT ] - then - cp -f /etc/security/access.conf.BOOT /etc/security/access.conf - fi - echo -n "Starting PBS Mom: " - startproc $PBS_PREFIX/sbin/pbs_mom -r - rc_status -v - ;; - stop) - echo -n "Shutting down pbs_mom" - killproc pbs_mom - rc_status -v - ;; - restart) - ## Stop the service and regardless of whether it was - ## running or not, start it again. - $0 stop - $0 start - - # Remember status and be quiet - rc_status - ;; - status) - echo -n "Checking for pbs_mom: " - checkproc pbs_mom - rc_status -v - ;; - *) - echo "Usage: $0 {start|stop|status|restart}" - exit 1 - ;; -esac -rc_exit diff --git a/xCAT-server/share/xcat/netboot/add-on/torque/pbs_sched.suse b/xCAT-server/share/xcat/netboot/add-on/torque/pbs_sched.suse deleted file mode 100755 index 379133929..000000000 --- a/xCAT-server/share/xcat/netboot/add-on/torque/pbs_sched.suse +++ /dev/null @@ -1,109 +0,0 @@ -#! /bin/sh -# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. -# Copyright (c) 2001 IBM -# -# Author: Kurt Garloff -# Author: Egan Ford set local and overall rc status to -# rc_reset clear local rc status (overall remains) -# rc_exit exit appropriate to overall rc status -. /etc/rc.status - -# First reset status of this service -rc_reset - -# Return values acc. to LSB for all commands but status: -# 0 - success -# 1 - generic or unspecified error -# 2 - invalid or excess argument(s) -# 3 - unimplemented feature (e.g. "reload") -# 4 - insufficient privilege -# 5 - program is not installed -# 6 - program is not configured -# 7 - program is not running -# -# Note that starting an already running service, stopping -# or restarting a not-running service as well as the restart -# with force-reload (in case signalling is not supported) are -# considered a success. - -case "$1" in - start) - echo -n "Starting PBS Scheduler: " - startproc $PBS_PREFIX/sbin/pbs_sched - rc_status -v - ;; - stop) - echo -n "Shutting down PBS Scheduler: " - killproc pbs_sched - rc_status -v - ;; - restart) - ## Stop the service and regardless of whether it was - ## running or not, start it again. - $0 stop - $0 start - - # Remember status and be quiet - rc_status - ;; - status) - echo -n "Checking for pbs_sched: " - checkproc pbs_sched - rc_status -v - ;; - *) - echo "Usage: $0 {start|stop|status|restart}" - exit 1 - ;; -esac -rc_exit diff --git a/xCAT-server/share/xcat/netboot/add-on/torque/pbs_server.suse b/xCAT-server/share/xcat/netboot/add-on/torque/pbs_server.suse deleted file mode 100755 index 1ba4b661c..000000000 --- a/xCAT-server/share/xcat/netboot/add-on/torque/pbs_server.suse +++ /dev/null @@ -1,116 +0,0 @@ -#! /bin/sh -# Copyright (c) 1995-2000 SuSE GmbH Nuernberg, Germany. -# Copyright (c) 2001 IBM -# -# Author: Kurt Garloff -# Author: Egan Ford set local and overall rc status to -# rc_reset clear local rc status (overall remains) -# rc_exit exit appropriate to overall rc status -. /etc/rc.status - -# First reset status of this service -rc_reset - -# Return values acc. to LSB for all commands but status: -# 0 - success -# 1 - generic or unspecified error -# 2 - invalid or excess argument(s) -# 3 - unimplemented feature (e.g. "reload") -# 4 - insufficient privilege -# 5 - program is not installed -# 6 - program is not configured -# 7 - program is not running -# -# Note that starting an already running service, stopping -# or restarting a not-running service as well as the restart -# with force-reload (in case signalling is not supported) are -# considered a success. - -case "$1" in - start) - echo -n "Starting PBS Server: " - if [ -r $PBS_HOME/server_priv/serverdb ] - then - startproc $PBS_PREFIX/sbin/pbs_server - else - startproc $PBS_PREFIX/sbin/pbs_server -t create - fi - rc_status -v - ;; - stop) - echo -n "Shutting down PBS Server: " - $PBS_PREFIX/bin/qterm -t quick - rc_status -v - ;; - restart) - ## Stop the service and regardless of whether it was - ## running or not, start it again. - $0 stop - $0 start - - # Remember status and be quiet - rc_status - ;; - status) - echo -n "Checking for pbs_server: " - checkproc pbs_server - rc_status -v - ;; - *) - echo "Usage: $0 {start|stop|status|restart}" - exit 1 - ;; -esac -rc_exit