1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
# Defaults for httpry initscript
# sourced by /etc/init.d/httpry
# At startup VERBOSE value is set in 'no'. When user invokes
# httpry init.d script, no output is showed.
# It could be unexpected behaviour, because it is common practice for
# init.d script to ignore VERBOSE value.
# Here VERBOSE is overridden to conform such the practice.
VERBOSE=yes
# Arguments to be passed to httpry executable beside -d option. For detailed
# explanations on possible options see httpry(1) manpage or consult
# documentation /usr/share/doc/httpry.
OPTIONS="-o /var/log/httpry.log -i any"
# Specify a bpf-style capture filter. For more informations see tcpdump(8)
# manpage.
EXPRESSION=""
|