diff options
Diffstat (limited to 'network/arptables/doinst.sh')
-rw-r--r-- | network/arptables/doinst.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/network/arptables/doinst.sh b/network/arptables/doinst.sh new file mode 100644 index 0000000000..e2d05cefb5 --- /dev/null +++ b/network/arptables/doinst.sh @@ -0,0 +1,31 @@ +PRGNAM=arptables + +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/$PRGNAM ]; then + cp -a etc/rc.d/init.d/$PRGNAM etc/rc.d/init.d/$PRGNAM.new.incoming + cat etc/rc.d/init.d/$PRGNAM.new > etc/rc.d/init.d/$PRGNAM.new.incoming + mv etc/rc.d/init.d/$PRGNAM.new.incoming etc/rc.d/init.d/$PRGNAM.new +fi +config etc/rc.d/init.d/$PRGNAM.new + +# Make sure we have the sysv-style configs +if [ ! -e etc/sysconfig/network ]; then + touch etc/sysconfig/network +fi +if [ ! -e etc/sysconfig/$PRGNAM ]; then + touch etc/sysconfig/$PRGNAM +fi + |