X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=disable_pod.sh;fp=disable_pod.sh;h=0000000000000000000000000000000000000000;hb=de93115ab4922bad8986ca891a1f71eb7176b2b9;hp=bba89f8973cb84b31bff28e3c329f520bd80c7a7;hpb=b78b4a0b9256d477c3bdb70693a66de3da3865d2;p=pingofdeath.git diff --git a/disable_pod.sh b/disable_pod.sh deleted file mode 100755 index bba89f8..0000000 --- a/disable_pod.sh +++ /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 -# Initial version based on the work of -# Robert Adams and EMULAB -# - -function disable_pod() -{ - local SYSCTL=/sbin/sysctl - $SYSCTL -w net.ipv4.icmp_ipod_enabled=0 >/dev/null - return 0 -} - -