mirror of
https://notabug.org/Sages-of-Gensokyo/gensokyo_kappa-overlay
synced 2025-01-18 23:51:13 +01:00
29 lines
732 B
Plaintext
29 lines
732 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
depend() {
|
|
use net logger
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting X remote desktop daemon"
|
|
start-stop-daemon --start --pidfile /var/run/xrdp.pid --exec /usr/sbin/xrdp > /dev/null
|
|
eend $? || return $?
|
|
|
|
ebegin "Starting remote desktop session manager"
|
|
start-stop-daemon --start --pidfile /var/run/xrdp-sesman.pid --exec /usr/sbin/xrdp-sesman > /dev/null
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping X remote desktop daemon"
|
|
start-stop-daemon --stop --pidfile /var/run/xrdp.pid
|
|
eend $?
|
|
|
|
ebegin "Stopping remote desktop session manager"
|
|
start-stop-daemon --stop --pidfile /var/run/xrdp-sesman.pid
|
|
eend $?
|
|
}
|