diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-02-08 22:04:46 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-02-08 22:04:46 +0100 |
commit | cd0907a905e126b421b134b167bad3f97c2915a4 (patch) | |
tree | 5db2287c594b3359d199236115c5935bacefa989 | |
parent | 6fa46f4bdca4c6774a2cddba6585a3695ad6f9c8 (diff) | |
download | hurd-cd0907a905e126b421b134b167bad3f97c2915a4.tar.gz hurd-cd0907a905e126b421b134b167bad3f97c2915a4.tar.bz2 hurd-cd0907a905e126b421b134b167bad3f97c2915a4.zip |
runsystem: Do not try to set up translators if we do not have settrans
-rw-r--r-- | daemons/runsystem.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/runsystem.sh b/daemons/runsystem.sh index b10145a3..34dfeeb7 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 ; then +if ! test -e /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 |