3 # spice-vdagentd Agent daemon for Spice guests
6 # description: Together with a per X-session agent process the spice agent \
7 # daemon enhances the spice guest user experience with client \
8 # mouse mode, guest <-> client copy and paste support and more.
11 # Provides: spice-vdagentd
12 # Required-Start: $local_fs messagebus
13 # Required-Stop: $local_fs messagebus
14 # Should-Start: $local_fs messagebus
15 # Should-Stop: $local_fs messagebus
17 # Default-Stop: 0 1 2 3 4 6
18 # Short-Description: Agent daemon for Spice guests
19 # Description: Together with a per X-session agent process the spice agent
20 # daemon enhances the spice guest user experience with client
21 # mouse mode, guest <-> client copy and paste support and more.
24 # Source function library.
25 .
/etc
/rc.d
/init.d
/functions
27 exec="/usr/sbin/spice-vdagentd"
29 port
="/dev/virtio-ports/com.redhat.spice.0"
31 [ -e /etc
/sysconfig
/$prog ] && .
/etc
/sysconfig
/$prog
33 lockfile
=/var
/lock
/subsys
/$prog
36 [ -x $exec ] ||
exit 5
37 [ -c $port ] ||
exit 6
38 # In case the previous running vdagentd crashed
39 rm -f /var
/run
/spice-vdagentd
/spice-vdagent-sock
40 echo -n $
"Starting $prog: "
41 daemon
$exec $SPICE_VDAGENTD_EXTRA_ARGS
44 [ $retval -eq 0 ] && touch $lockfile
49 echo -n $
"Stopping $prog: "
53 [ $retval -eq 0 ] && rm -f $lockfile
71 # run checks to determine if the service is running or use generic status
76 rh_status
>/dev
/null
2>&1
102 condrestart|try-restart
)
103 rh_status_q ||
exit 0
107 echo $
"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"