Add copyright notice. Minor corrections.

This commit is contained in:
Darren 'Tadgy' Austin 2022-08-24 00:43:30 +01:00
commit 8a570912ce
3 changed files with 15 additions and 3 deletions

View file

@ -1,4 +1,8 @@
#!/bin/bash #!/bin/bash
# Version: 0.2.0
# Copyright (c) 2022:
# Darren 'Tadgy' Austin <darren (at) afterdark.org.uk>
# Licensed under the terms of the GNU General Public License version 3.
# The name of the main external interface. # The name of the main external interface.
EX_IF="eth0" EX_IF="eth0"
@ -150,7 +154,7 @@ case "$1" in
start_firewall start_firewall
;; ;;
*) *)
echo "Usage: $BASH_SOURCE <start|stop|restart>" >&2 echo "Usage: ${BASH_SOURCE[0]} <start|stop|restart>" >&2
exit 1 exit 1
;; ;;
esac esac

View file

@ -1,4 +1,8 @@
#!/bin/bash #!/bin/bash
# Version: 0.2.0
# Copyright (c) 2022:
# Darren 'Tadgy' Austin <darren (at) afterdark.org.uk>
# Licensed under the terms of the GNU General Public License version 3.
# The name of the main external interface. # The name of the main external interface.
EX_IF="eth0" EX_IF="eth0"
@ -202,7 +206,7 @@ case "$1" in
start_firewall start_firewall
;; ;;
*) *)
echo "Usage: $BASH_SOURCE <start|stop|restart>" >&2 echo "Usage: ${BASH_SOURCE[0]} <start|stop|restart>" >&2
exit 1 exit 1
;; ;;
esac esac

View file

@ -1,4 +1,8 @@
#!/bin/bash #!/bin/bash
# Version: 0.2.0
# Copyright (c) 2022:
# Darren 'Tadgy' Austin <darren (at) afterdark.org.uk>
# Licensed under the terms of the GNU General Public License version 3.
# The name of the main external interface. # The name of the main external interface.
EX_IF="eth0" EX_IF="eth0"
@ -184,7 +188,7 @@ case "$1" in
start_firewall start_firewall
;; ;;
*) *)
echo "Usage: $BASH_SOURCE <start|stop|restart>" >&2 echo "Usage: ${BASH_SOURCE[0]} <start|stop|restart>" >&2
exit 1 exit 1
;; ;;
esac esac