summaryrefslogtreecommitdiff
path: root/x11-drivers/displaylink-driver/files/rc-displaylink-1.3
blob: 1db2def2953462fd6938639674b80487e3851b41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
 
depend() {
after xdm
}
 
start() {
modprobe -q evdi
start-stop-daemon --start --background --chdir /opt/displaylink --make-pidfile --pidfile /run/displaylink.pid --exec /opt/displaylink/DisplayLinkManager
eend $?
}
 
stop() {
start-stop-daemon --stop --pidfile /run/displaylink.pid
eend $?
}