summaryrefslogtreecommitdiff
path: root/community/arptables/arptables.systemd
diff options
context:
space:
mode:
Diffstat (limited to 'community/arptables/arptables.systemd')
-rw-r--r--community/arptables/arptables.systemd21
1 files changed, 0 insertions, 21 deletions
diff --git a/community/arptables/arptables.systemd b/community/arptables/arptables.systemd
deleted file mode 100644
index 6a4019257..000000000
--- a/community/arptables/arptables.systemd
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-CONFIG_FILE='/etc/arptables.conf'
-
-case $1 in
- start)
- arptables-restore < "$CONFIG_FILE"
- ;;
- stop)
- arptables-restore < /dev/null
- ;;
- save)
- arptables-save > "$CONFIG_FILE"
- ;;
- *)
- echo "usage: ${0##*/} {start|stop|save}" >&2
- exit 1
- ;;
-esac
-
-# vim:set ts=2 sw=2 ft=sh et: