summaryrefslogtreecommitdiff
path: root/data/backups/firewall.2022_05_30_03_47_PM_1653918430.local
diff options
context:
space:
mode:
Diffstat (limited to 'data/backups/firewall.2022_05_30_03_47_PM_1653918430.local')
-rw-r--r--data/backups/firewall.2022_05_30_03_47_PM_1653918430.local20
1 files changed, 0 insertions, 20 deletions
diff --git a/data/backups/firewall.2022_05_30_03_47_PM_1653918430.local b/data/backups/firewall.2022_05_30_03_47_PM_1653918430.local
deleted file mode 100644
index 5e4677f..0000000
--- a/data/backups/firewall.2022_05_30_03_47_PM_1653918430.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