Thu, 04 Oct 2012 20:30:05 +0200
Correct out of date build configuration, porting to Solaris 11 network
link infrastructure and new libpcap logic. This additionally allows for
device drivers in subdirectories of /dev. Correct packaged nmap
personalities and signatures to work out of the box. Finally, hack
arpd logic to properly close sockets and quit on TERM by repeating
signaling in the run command script. Sadly, all this fails to correct
the run time behaviour of honeyd which fails to bind to the IP layer.
michael@224 | 1 | #!@l_prefix@/bin/openpkg rc |
michael@224 | 2 | ## |
michael@224 | 3 | ## rc.jabberd -- Run-Commands |
michael@224 | 4 | ## |
michael@224 | 5 | |
michael@224 | 6 | %config |
michael@224 | 7 | jabberd_enable="$openpkg_rc_def" |
michael@224 | 8 | jabberd_hostname=`hostname` |
michael@541 | 9 | jabberd_daemons="c2s router s2s sm" |
michael@224 | 10 | jabberd_cfgfile="@l_prefix@/etc/jabberd/jabberd.cfg" |
michael@224 | 11 | jabberd_log_prolog="true" |
michael@224 | 12 | jabberd_log_epilog="true" |
michael@224 | 13 | jabberd_log_numfiles="10" |
michael@224 | 14 | jabberd_log_minsize="1M" |
michael@224 | 15 | jabberd_log_complevel="9" |
michael@224 | 16 | |
michael@224 | 17 | %common |
michael@224 | 18 | jabberd_signal () { |
michael@704 | 19 | local retcode=1 |
michael@224 | 20 | local daemons= |
michael@224 | 21 | for daemons in $jabberd_daemons; do |
michael@224 | 22 | [ -f @l_prefix@/var/jabberd/pid/${daemons}.pid ] \ |
michael@704 | 23 | && kill -$1 `cat @l_prefix@/var/jabberd/pid/${daemons}.pid` \ |
michael@704 | 24 | && retcode=$? |
michael@224 | 25 | done |
michael@224 | 26 | return $retcode |
michael@224 | 27 | } |
michael@224 | 28 | |
michael@540 | 29 | %status -u @l_nusr@ -o |
michael@224 | 30 | jabberd_usable="unknown" |
michael@224 | 31 | jabberd_active="no" |
michael@224 | 32 | rcService jabberd enable yes && \ |
michael@224 | 33 | jabberd_signal 0 && jabberd_active="yes" |
michael@224 | 34 | echo "jabberd_enable=\"$jabberd_enable\"" |
michael@224 | 35 | echo "jabberd_usable=\"$jabberd_usable\"" |
michael@224 | 36 | echo "jabberd_active=\"$jabberd_active\"" |
michael@224 | 37 | |
michael@540 | 38 | %start -u @l_nusr@ |
michael@224 | 39 | rcService jabberd enable yes || exit 0 |
michael@224 | 40 | rcService jabberd active yes && exit 0 |
michael@224 | 41 | @l_prefix@/bin/jabberd -b -c $jabberd_cfgfile |
michael@224 | 42 | |
michael@540 | 43 | %stop -u @l_nusr@ |
michael@224 | 44 | rcService jabberd enable yes || exit 0 |
michael@224 | 45 | rcService jabberd active no && exit 0 |
michael@224 | 46 | jabberd_signal TERM |
michael@224 | 47 | sleep 2 |
michael@224 | 48 | for daemons in $jabberd_daemons; do |
michael@224 | 49 | rm -f @l_prefix@/var/jabberd/pid/${daemons}.pid |
michael@224 | 50 | done |
michael@224 | 51 | |
michael@540 | 52 | %restart -u @l_nusr@ |
michael@224 | 53 | rcService jabberd enable yes || exit 0 |
michael@224 | 54 | rcService jabberd active no && exit 0 |
michael@224 | 55 | rc jabberd stop |
michael@224 | 56 | sleep 2 |
michael@224 | 57 | rc jabberd start |
michael@224 | 58 | |
michael@704 | 59 | %daily -u @l_nusr@ |
michael@224 | 60 | rcService jabberd enable yes || exit 0 |
michael@224 | 61 | logfiles= |
michael@224 | 62 | for daemons in $jabberd_daemons; do |
michael@224 | 63 | logfiles="$logfiles @l_prefix@/var/jabberd/log/$daemons.log" |
michael@224 | 64 | done |
michael@224 | 65 | shtool rotate -f \ |
michael@224 | 66 | -n ${jabberd_log_numfiles} -s ${jabberd_log_minsize} -d \ |
michael@704 | 67 | -z ${jabberd_log_complevel} -m 644 -o @l_nusr@ -g @l_ngrp@ \ |
michael@224 | 68 | -P "${jabberd_log_prolog}" \ |
michael@224 | 69 | -E "${jabberd_log_epilog}; rc jabberd restart" \ |
michael@224 | 70 | $logfiles |
michael@224 | 71 |