diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-02-08 22:55:16 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-02-08 22:55:16 +0100 |
commit | bf31ca575f80849dac9af994e5fab283d3e226dd (patch) | |
tree | 72a951c4fb5763c7b95afa413496eb3f7f1c0451 /daemons | |
parent | 197f8716712306bdc7e3808b170438f5d53b2929 (diff) | |
download | hurd-bf31ca575f80849dac9af994e5fab283d3e226dd.tar.gz hurd-bf31ca575f80849dac9af994e5fab283d3e226dd.tar.bz2 hurd-bf31ca575f80849dac9af994e5fab283d3e226dd.zip |
runsystem.hurd.sh: Make emergency really an emergency
emergency means we want to get a shell as quickly as possible, so we do
not want any daemon at all.
Diffstat (limited to 'daemons')
-rw-r--r-- | daemons/runsystem.hurd.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/daemons/runsystem.hurd.sh.in b/daemons/runsystem.hurd.sh.in index c5e3c9ff..d8c1ccbd 100644 --- a/daemons/runsystem.hurd.sh.in +++ b/daemons/runsystem.hurd.sh.in @@ -94,10 +94,10 @@ while [ $# -gt 0 ]; do -*) flags="${flags}${arg#-}" ;; - 'single'|'emergency') # Linux compat + 'single') flags="${flags}s" ;; - 'fastboot') + 'fastboot'|'emergency') flags="${flags}f" ;; esac |