diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2013-10-15 22:52:11 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-10-29 23:31:43 -0500 |
commit | 6220eb8426a637e4f51a3691a7d66318bc083aa9 (patch) | |
tree | 6a5b1dd84dce37b2797dda660de7878a9deecc71 /network/ebtables/doinst.sh | |
parent | 41274b696baf68c3102e3665f244c32d67c1738e (diff) |
network/ebtables: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/ebtables/doinst.sh')
-rw-r--r-- | network/ebtables/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/network/ebtables/doinst.sh b/network/ebtables/doinst.sh deleted file mode 100644 index 092a869b6b..0000000000 --- a/network/ebtables/doinst.sh +++ /dev/null @@ -1,15 +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... -} - -config etc/ethertypes.new - |