mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-24 09:29:52 -05:00
20 lines
274 B
Plaintext
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 $?
|
|
}
|