- simplify build procses by combining start/enable/status functions into
[pingofdeath.git] / disable_pod.sh
diff --git a/disable_pod.sh b/disable_pod.sh
deleted file mode 100755 (executable)
index bba89f8..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /bin/bash
-#include INTEL_LICENSE.txt
-#
-########################################################################
-#
-# Disable Ping Of Death
-#
-########################################################################
-#
-# DESCRIPTION
-#
-# The disable_pod function turns off the pod syscntl
-#
-# 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
-#
-
-function disable_pod()
-{
-    local SYSCTL=/sbin/sysctl
-    $SYSCTL -w net.ipv4.icmp_ipod_enabled=0 >/dev/null
-    return 0
-}
-
-