summaryrefslogtreecommitdiff
path: root/data/backups/firewall.2022_05_30_03_41_PM_1653918107.local
diff options
context:
space:
mode:
authorroot2022-05-30 16:09:15 +0200
committerroot2022-05-30 16:09:15 +0200
commit591f6442f02138802ff9576a8c8103a49ef8612c (patch)
tree51331f9b2fa70d47b553c8ff0149ec51247efff3 /data/backups/firewall.2022_05_30_03_41_PM_1653918107.local
parentBeta2: DNS & NTP Redirect To Exernal Working! (diff)
downloadIPFireCustomRules-master.tar.gz
IPFireCustomRules-master.tar.bz2
IPFireCustomRules-master.zip
Start ignoring backups.logHEADmaster
Diffstat (limited to 'data/backups/firewall.2022_05_30_03_41_PM_1653918107.local')
-rw-r--r--data/backups/firewall.2022_05_30_03_41_PM_1653918107.local20
1 files changed, 0 insertions, 20 deletions
diff --git a/data/backups/firewall.2022_05_30_03_41_PM_1653918107.local b/data/backups/firewall.2022_05_30_03_41_PM_1653918107.local
deleted file mode 100644
index 5e4677f..0000000
--- a/data/backups/firewall.2022_05_30_03_41_PM_1653918107.local
+++ /dev/null
@@ -1,20 +0,0 @@
1#!/bin/sh
2# Used for private firewall rules
3
4# See how we were called.
5case "$1" in
6 start)
7 ## add your 'start' rules here
8 ;;
9 stop)
10 ## add your 'stop' rules here
11 ;;
12 reload)
13 $0 stop
14 $0 start
15 ## add your 'reload' rules here
16 ;;
17 *)
18 echo "Usage: $0 {start|stop|reload}"
19 ;;
20esac