diff options
author | Menno E. Duursma <druiloor@zonnet.nl> | 2010-05-11 22:54:37 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:54:37 +0200 |
commit | c6b2256866321142ccacae2a6c3a113d3363b130 (patch) | |
tree | 2107d0115b7aee196f7295bf626dd024897d4a9c /network/arptables/doinst.sh | |
parent | 08c03050d073a86543122620252de6ca88736b19 (diff) | |
download | slackbuilds-c6b2256866321142ccacae2a6c3a113d3363b130.tar.gz |
network/arptables: Added to 12.1 repository
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 + |