initialize msva in Xsession based on monkeysphere.conf instead of /etc/X11/Xsession.d
[monkeysphere.git] / packaging / debian / 70monkeysphere_use_validation_agent
1 # /etc/X11/Xsession.d/70monkeysphere_use_validation_agent
2
3 # This is a script to be sourced by Xsession.  It wraps the session
4 # startup argument with a monkeysphere-validation-agent nested
5 # process, if available and none already exist.
6
7 # Enable this system-wide by setting
8 # MONKEYSPHERE_USE_VALIDATION_AGENT=true in
9 # /etc/monkeysphere/monkeysphere.conf
10
11 # Note that there is some weird interaction between this and
12 # dbus-session at the moment: dbus-launch can start the msva just
13 # fine, but if msva tries to start dbus-launch, dbus-launch fails
14 # with:
15
16 # Failed to waitpid() for babysitter intermediate process: No child processes
17
18 # So this is placed at position 70 -- *before* the dbus Xsession
19 # startup script, which is at 75 as of 2010-03-12, when i wrote this.
20
21 # Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
22
23 STARTMSVA=
24 MSVAGENT=/usr/bin/monkeysphere-validation-agent
25 MSSYSCONFIG=/etc/monkeysphere/monkeysphere.conf
26 MSUSERCONFIG="$HOME/.monkeysphere/monkeysphere.conf"
27
28 if [ -x "$MSVAGENT" ] ; then
29     USEMSVAGENT=$(sh -c "
30 . '$MSSYSCONFIG' 2>/dev/null
31 . '$MSUSERCONFIG' 2>/dev/null || :
32 printf '%s' "'"$MONKEYSPHERE_USE_VALIDATION_AGENT"')
33     
34     if [ "$USEMSVAGENT" == "true" ] ; then
35         STARTUP="$MSVAGENT $STARTUP"
36     fi
37 fi