17 lines
348 B
Plaintext
17 lines
348 B
Plaintext
# *-* shell *-*
|
|
#
|
|
case ${ACTION} in
|
|
post)
|
|
cat << _EOF
|
|
==========================================================================
|
|
|
|
If you want to make ufw start automatically at boot, add the services to
|
|
the 'default' runlevel:
|
|
|
|
$ rc-update add ufw default
|
|
|
|
==========================================================================
|
|
_EOF
|
|
;;
|
|
esac
|