mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-11 03:25:54 +02:00
(Einige Module fehlen noch...) Unattended Installer bearbeitet. Firewallscript hinzugefuegt. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@360 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
21 lines
360 B
Bash
21 lines
360 B
Bash
#!/bin/sh
|
|
# Used for private firewall rules
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
## add your 'start' rules here
|
|
;;
|
|
stop)
|
|
## add your 'stop' rules here
|
|
;;
|
|
reload)
|
|
$0 stop
|
|
$0 start
|
|
## add your 'reload' rules here
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|reload}"
|
|
;;
|
|
esac
|