/usr/share/ufw
NameSizeModeActions
iptables/-0755rm
messages/-0755rm
after.init11260644editdlrm
after.rules10040644editdlrm
after.rules.md5sum3050644editdlrm
after6.rules9150644editdlrm
after6.rules.md5sum2480644editdlrm
before.init11300644editdlrm
before.rules25370644editdlrm
before.rules.md5sum5580644editdlrm
before6.rules67000644editdlrm
before6.rules.md5sum6930644editdlrm
check-requirements76540755editdlrm
ufw.conf3120644editdlrm
user.rules3070644editdlrm
user.rules.md5sum600644editdlrm
user6.rules1070644editdlrm
user6.rules.md5sum610644editdlrm
Edit: /usr/share/ufw/before.init (1130B)
#!/bin/sh # # before.init: if executable, called by ufw-init. See 'man ufw-framework' for # details. Note that output from these scripts is not seen via the # the ufw command, but instead via ufw-init. # # Copyright 2013 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3, # as published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # set -e case "$1" in start) # typically required ;; stop) # typically required ;; status) # optional ;; flush-all) # optional ;; *) echo "'$1' not supported" echo "Usage: before.init {start|stop|flush-all|status}" ;; esac