dbus/rc.dbus

Sat, 03 Oct 2009 16:18:52 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Oct 2009 16:18:52 +0200
changeset 220
a6cd892638c1
permissions
-rw-r--r--

Update version, adjust corresponding buildconf, and correct logic.
1: Make minor corrections and improvements to scripts patch logic.
2: Upgrade to most recent stable release version 3.0.2.
3: Force selection of a single db backend, as multiple ones never
were supported (changing 'with_db<end>' identifiers accordingly.)
4: Unfortunately add gawk requirement although only partly needed.
5: Add openssl::with_threads requirement to solve strange and hard
to debug problems on Solaris leading to connection failures:

'host-dir JobId 0: Error: openssl.c:86 Connect failure: ERR=error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number'

and

'host-dir JobId 40: Fatal error: TLS negotiation failed with FD at "back1.host.com:9102"'

     1 #!@l_prefix@/bin/openpkg rc
     2 ##
     3 ##  rc.dbus -- Run-Commands
     4 ##
     6 %config
     7     dbus_enable="$openpkg_rc_def"
     8     dbus_flags="--system --fork"
    10 %common
    11     dbus_pidfile="@l_prefix@/var/dbus/run/dbus.pid"
    12     dbus_cfgfile="@l_prefix@/etc/dbus/system.conf"
    13     dbus_signal () {
    14         [ -f $dbus_pidfile ] && kill -$1 `cat $dbus_pidfile`
    15     }
    17 %status -u @l_susr@ -o
    18     dbus_usable="unknown"
    19     dbus_active="no"
    20     rcService dbus enable yes && \
    21         dbus_signal 0 && dbus_active="yes"
    22     echo "dbus_enable=\"$dbus_enable\""
    23     echo "dbus_usable=\"$dbus_usable\""
    24     echo "dbus_active=\"$dbus_active\""
    26 %start -u @l_susr@
    27     rcService dbus enable yes || exit 0
    28     rcService dbus active yes && exit 0
    29     @l_prefix@/lib/dbus/bin/dbus-daemon $dbus_flags >/dev/null 2>&1
    31 %stop -u @l_susr@
    32     rcService dbus enable yes || exit 0
    33     rcService dbus active no && exit 0
    34     dbus_signal TERM
    35     sleep 2
    36     rm -f $dbus_pidfile 2>/dev/null || true
    38 %restart -u @l_susr@
    39     rcService dbus enable yes || exit 0
    40     rcService dbus active no && exit 0
    41     rc dbus stop start

mercurial