Files
puter/src/emulator/image/debug-service
T
2024-09-18 16:21:07 -04:00

20 lines
274 B
Plaintext

#!/sbin/openrc-run
description="Run debug init"
depend() {
after twisp-service
}
start() {
ebegin "Running Debug Init"
echo " 🛠 bash will be on tty2"
setsid bash < /dev/tty2 > /dev/tty2 2>&1 &
eend $?
}
stop() {
ebegin "Stopping Debug Init"
eend $?
}