diff options
Diffstat (limited to 'network/arptables/doinst.sh')
-rw-r--r-- | network/arptables/doinst.sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/network/arptables/doinst.sh b/network/arptables/doinst.sh deleted file mode 100644 index e2658e2fe1f4..000000000000 --- a/network/arptables/doinst.sh +++ /dev/null @@ -1,29 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -# Keep same permissions on rc files: -if [ -e etc/rc.d/init.d/arptables ]; then - cp -a etc/rc.d/init.d/arptables etc/rc.d/init.d/arptables.new.incoming - cat etc/rc.d/init.d/arptables.new > etc/rc.d/init.d/arptables.new.incoming - mv etc/rc.d/init.d/arptables.new.incoming etc/rc.d/init.d/arptables.new -fi -config etc/rc.d/init.d/arptables.new - -# Make sure we have the sysv-style configs -if [ ! -e etc/sysconfig/network ]; then - touch etc/sysconfig/network -fi -if [ ! -e etc/sysconfig/arptables ]; then - touch etc/sysconfig/arptables -fi - |