Simplify xvfb init script
This commit is contained in:
parent
b407834ed7
commit
1f71a2e94c
1 changed files with 1 additions and 21 deletions
|
@ -1,23 +1,3 @@
|
||||||
XVFB=/usr/bin/Xvfb
|
XVFB=/usr/bin/Xvfb
|
||||||
XVFBARGS="$DISPLAY -ac -screen 0 1024x768x16 +extension RANDR"
|
XVFBARGS="$DISPLAY -ac -screen 0 1024x768x16 +extension RANDR"
|
||||||
PIDFILE=/var/xvfb_$DISPLAY.pid
|
/sbin/start-stop-daemon --start --quiet --background --exec $XVFB -- $XVFBARGS
|
||||||
case "$1" in
|
|
||||||
start)
|
|
||||||
echo -n "Starting virtual X frame buffer: Xvfb"
|
|
||||||
/sbin/start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $XVFB -- $XVFBARGS
|
|
||||||
echo "."
|
|
||||||
;;
|
|
||||||
stop)
|
|
||||||
echo -n "Stopping virtual X frame buffer: Xvfb"
|
|
||||||
/sbin/start-stop-daemon --stop --quiet --pidfile $PIDFILE
|
|
||||||
echo "."
|
|
||||||
;;
|
|
||||||
restart)
|
|
||||||
$0 stop
|
|
||||||
$0 start
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Usage: /etc/init.d/xvfb {start|stop|restart}"
|
|
||||||
exit 1
|
|
||||||
esac
|
|
||||||
exit 0
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue