summaryrefslogtreecommitdiff
path: root/community/ipset/ipset.systemd
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-05-12 11:23:20 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-05-12 11:23:20 +0200
commitea84a7ef4c3c637a7504361c6ac42e8ba93a6179 (patch)
tree0bee5e198a06cfeff7de0396c4739ae2569f7067 /community/ipset/ipset.systemd
parente55fda657497bd8743c0a57d917316afe70950f8 (diff)
parent5b9e0d821dd428792bd51ed03af2b800924ce69d (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/start-stop-daemon/PKGBUILD extra/claws-mail-extra-plugins/PKGBUILD extra/giflib/PKGBUILD extra/gvfs/PKGBUILD extra/latex2rtf/PKGBUILD extra/libgpod/PKGBUILD extra/libimobiledevice/PKGBUILD extra/libvpx/PKGBUILD extra/libwpg/PKGBUILD extra/libxml2/PKGBUILD extra/pixman/PKGBUILD extra/thunar-archive-plugin/PKGBUILD
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: