mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 03:07:43 +02:00
Patch-O-Matic in den Kernel eingebaut.
(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
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
# Begin /etc/sysconfig/clock
|
||||
|
||||
UTC=1
|
||||
UTC=0
|
||||
|
||||
# End /etc/sysconfig/clock
|
||||
|
||||
20
src/initscripts/sysconfig/firewall.local
Normal file
20
src/initscripts/sysconfig/firewall.local
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/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
|
||||
@@ -1 +1 @@
|
||||
HOSTNAME=ipfirebox
|
||||
HOSTNAME=ipfire
|
||||
|
||||
Reference in New Issue
Block a user