summaryrefslogtreecommitdiff
path: root/community/ebtables/ebtables.systemd
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/ebtables/ebtables.systemd
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/ebtables/ebtables.systemd')
-rw-r--r--community/ebtables/ebtables.systemd21
1 files changed, 0 insertions, 21 deletions
diff --git a/community/ebtables/ebtables.systemd b/community/ebtables/ebtables.systemd
deleted file mode 100644
index 7c21ff967..000000000
--- a/community/ebtables/ebtables.systemd
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-CONFIG_FILE='/etc/ebtables.conf'
-
-case $1 in
- start)
- ebtables-restore < "$CONFIG_FILE"
- ;;
- stop)
- ebtables -F
- ;;
- save)
- ebtables-save > "$CONFIG_FILE"
- ;;
- *)
- echo "usage: ${0##*/} {start|stop|save}" >&2
- exit 1
- ;;
-esac
-
-# vim:set ts=2 sw=2 ft=sh et: