blob: a5d08b7f3f690197a8b0746477c6066cf30ca25d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
: ${TELEPORT_CONFDIR:=/etc/teleport}
: ${TELEPORT_PIDFILE:=/var/run/${SVCNAME}.pid}
: ${TELEPORT_BINARY:=/usr/bin/teleport}
: ${TELEPORT_LOGFILE:=/var/log/teleport.log}
depend() {
need net
}
start() {
ebegin "Starting Teleport SSH Service"
start-stop-daemon --start --exec /usr/bin/teleport \
--background --make-pidfile --pidfile "${TELEPORT_PIDFILE}" \
--stderr "${TELEPORT_LOGFILE}" \
-- start --config="${TELEPORT_CONFDIR}/teleport.yaml" \
${TELEPORT_OPTS}
eend $?
}
stop() {
ebegin "Stopping Teleport SSH Service"
start-stop-daemon --stop --exec /usr/bin/teleport \
--pidfile "${TELEPORT_PIDFILE}"
eend $?
}
|