summaryrefslogtreecommitdiff
path: root/community/ipset/ipset.systemd
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-05-12 01:16:13 -0700
committerroot <root@rshg054.dnsready.net>2013-05-12 01:16:13 -0700
commit5b9e0d821dd428792bd51ed03af2b800924ce69d (patch)
treee789152a7a0fd6ae4eb0a7d0e572d392f81beca4 /community/ipset/ipset.systemd
parent207b7c7b0d7bc0db898a2386a665bdb20495fb19 (diff)
Sun May 12 01:15:39 PDT 2013
Diffstat (limited to 'community/ipset/ipset.systemd')
-rw-r--r--community/ipset/ipset.systemd21
1 files changed, 0 insertions, 21 deletions
diff --git a/community/ipset/ipset.systemd b/community/ipset/ipset.systemd
deleted file mode 100644
index c28086322..000000000
--- a/community/ipset/ipset.systemd
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-CONFIG_FILE='/etc/ipset.conf'
-
-case $1 in
- start)
- ipset restore < "$CONFIG_FILE"
- ;;
- stop)
- ipset destroy
- ;;
- save)
- ipset save > "$CONFIG_FILE"
- ;;
- *)
- echo "usage: ${0##*/} {start|stop|save}" >&2
- exit 1
- ;;
-esac
-
-# vim:set ts=2 sw=2 ft=sh et: