diff options
Diffstat (limited to 'daemons')
-rw-r--r-- | daemons/runsystem.hurd.sh.in | 2 | ||||
-rw-r--r-- | daemons/runsystem.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/daemons/runsystem.hurd.sh.in b/daemons/runsystem.hurd.sh.in index f4ed0a5a..3d5f1f28 100644 --- a/daemons/runsystem.hurd.sh.in +++ b/daemons/runsystem.hurd.sh.in @@ -63,7 +63,7 @@ echo # # Normally this should be the case, but we better make sure since # without the pflocal server, pipe(2) does not work. -if ! test -e /servers/socket/1 && command -v settrans >/dev/null ; then +if ! test -c /servers/socket/1 && command -v settrans >/dev/null ; then # The root filesystem should be read-only at this point. if fsysopts / --update --writable ; then settrans -c /servers/socket/1 /hurd/pflocal diff --git a/daemons/runsystem.sh b/daemons/runsystem.sh index 4894f70b..9698ff2a 100644 --- a/daemons/runsystem.sh +++ b/daemons/runsystem.sh @@ -60,7 +60,7 @@ echo # # Normally this should be the case, but we better make sure since # without the pflocal server, pipe(2) does not work. -if ! test -e /servers/socket/1 && command -v settrans >/dev/null ; then +if ! test -c /servers/socket/1 && command -v settrans >/dev/null ; then # The root filesystem should be read-only at this point. if fsysopts / --update --writable ; then settrans -c /servers/socket/1 /hurd/pflocal |