blob: f0b6cae3f9c9f7d0ba59286a538c48906e99e73f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $ID: $
description="Start minimal X server for VDR"
source /etc/conf.d/vdr
command="/usr/bin/X"
command_args="${X11_SERVER:=\:0 -br -nocursor -nolisten tcp -quiet}"
start_stop_daemon_args="--make-pidfile --background"
pidfile="/var/run/vdr-x11.pid"
depend() {
need localmount
after acpid
before vdr
}
|