]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/maemo/gconf-osso/gconf-daemon-oe.sh
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / maemo / gconf-osso / gconf-daemon-oe.sh
1 #!/bin/sh
2 # GConf daemon startup/shutdown script
3
4 PROG=/usr/libexec/gconfd-2
5 SVC="GConf daemon"
6
7 case "$1" in
8 start)  START=TRUE
9         ;;
10 stop)   START=FALSE
11         ;;
12 *)      echo "Usage: $0 {start|stop}"
13         exit 1
14         ;;
15 esac
16
17 if [ $START = TRUE ]; then
18   $LAUNCHWRAPPER start "$SVC" $PROG
19 else
20   $LAUNCHWRAPPER stop"$SVC" $PROG
21 fi