Shell has stderr working now

This commit is contained in:
Mattia Giambirtone 2022-03-13 12:46:39 +01:00
parent 99fd4171ed
commit 5f965826ea
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ proc addStuff =
var shell = newService(name="login", description="A simple login shell", kind=Simple,
workDir=getCurrentDir(), runlevel=Boot, exec="/bin/login -f root",
supervised=true, restart=Always, restartDelay=0, depends=(@[]), provides=(@[]),
useParentStreams=true, stdin="/dev/null", stderr="", stdout=""
useParentStreams=true, stdin="/dev/null", stderr="/proc/self/fd/2", stdout="/proc/self/fd/1"
)
addService(errorer)
addService(echoer)