mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-23 14:03:33 -04:00
14 lines
285 B
Plaintext
14 lines
285 B
Plaintext
#!/sbin/openrc-run
|
|
# shellcheck shell=sh
|
|
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
command="/usr/bin/ttyd"
|
|
command_args="${TTYD_OPTS:--i lo -p 7681 -O} login"
|
|
command_background=1
|
|
pidfile="/run/ttyd.pid"
|
|
|
|
depend() {
|
|
use net
|
|
}
|