- simplify build procses by combining start/enable/status functions into
[pingofdeath.git] / pod.src
diff --git a/pod.src b/pod.src
deleted file mode 100755 (executable)
index 057e8b1..0000000
--- a/pod.src
+++ /dev/null
@@ -1,122 +0,0 @@
-#! /bin/bash
-#include INTEL_LICENSE.txt
-#
-########################################################################
-#
-# PlanetLab Ping Of Death
-#
-########################################################################
-#
-# DESCRIPTION
-#
-# This shell script takes care of starting and stopping Planetlab
-# Ping-Of-Death.
-#
-# The Planetlab POD is a Linux kernel patch that creates the feature
-# of resetting and rebooting a computer when a particularily
-# formatted ICMP "ping" commmand is received.
-#
-# A PlanetLab node's kernel gets a host, mask and hash value through
-# sysctl's that are performed on the node.  The node then looks
-# for an ICMP packet from a host matching the host/mask and, if the
-# packet payload is the hash value, the node forces an immediate
-# reboot.
-#
-# HISTORY
-#
-# May 17, 2003    -   Paul Brett <paul.brett@intel.com>
-#                     Initial version based on the work of 
-#                     Robert Adams <robert.adams@intel.com> and EMULAB
-#
-# chkconfig: - 11 99
-# description: enable Ping of Death
-
-# Source function library.
-. /etc/init.d/functions
-
-# Source networking configuration.
-. /etc/sysconfig/network
-
-#include enable_pod.sh
-#include disable_pod.sh
-#include status_pod.sh
-
-echo -n "PlanetLab Ping Of Death "
-
-CONF=/etc/ipod.conf
-
-if [[ -r $CONF ]]
-then
-    # load the POD configuration file
-    . $CONF
-else
-    # no POD configuration file - failed
-    echo
-    action $"Missing configuration file $CONF" /bin/false
-    exit 1
-fi
-
-# Check that networking is up.
-if [[ ${NETWORKING} = "no" ]]
-then
-    action $"" /bin/false
-    exit 1
-fi
-
-# Check the POD parameters
-if [[ "$HASH" == "" ]]
-then
-    echo 
-    action $"Missing HASH in $CONF" /bin/false
-    exit 1
-fi
-
-if [[ "$IP_SUBNET" == "" ]]
-then
-    echo
-    action $"Missing IP_SUBNET in $CONF" /bin/false
-    exit 1
-fi
-
-if [[ "$IP_MASK" == "" ]]
-then
-    echo
-    action $"Missing IP_MASK in $CONF" /bin/false
-    exit 1
-fi
-
-# See how we were called.
-case "$1" in
-  start)
-        enable_pod $IP_SUBNET $IP_MASK $IP_HASH
-        RETVAL=$?
-        if [[ $RETVAL -eq 0 ]]
-        then
-            action $"" /bin/true
-        else
-            action $"" /bin/false
-        fi
-        ;;
-  stop)
-        disable_pod
-        RETVAL=$?
-        if [[ $RETVAL -eq 0 ]]
-        then
-            action $"" /bin/true
-        else
-            action $"" /bin/false
-        fi
-        ;;
-  status)
-        status_pod
-        RETVAL=$?
-        ;;
-  restart|reload)
-        disable_pod
-        enable_pod
-        RETVAL=$?
-        ;;
-  *)
-        echo $"Usage: $0 {start|stop|restart|status}"
-        exit 1
-esac