mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-11 05:17:44 +03:00
fstab-generator: fix typo
This commit is contained in:
parent
996c83903d
commit
5a12d1ca1a
@ -423,7 +423,7 @@ static int add_mount(
|
|||||||
* mount.nfs (so systemd can manage the job-control aspects of 'bg'),
|
* mount.nfs (so systemd can manage the job-control aspects of 'bg'),
|
||||||
* we need to explicitly preserve that default, and also ensure
|
* we need to explicitly preserve that default, and also ensure
|
||||||
* the systemd mount-timeout doesn't interfere.
|
* the systemd mount-timeout doesn't interfere.
|
||||||
* By placing these options first, they can be over-ridden by
|
* By placing these options first, they can be overridden by
|
||||||
* settings in /etc/fstab. */
|
* settings in /etc/fstab. */
|
||||||
opts = strjoina("x-systemd.mount-timeout=infinity,retry=10000,nofail,", opts, ",fg");
|
opts = strjoina("x-systemd.mount-timeout=infinity,retry=10000,nofail,", opts, ",fg");
|
||||||
SET_FLAG(flags, NOFAIL, true);
|
SET_FLAG(flags, NOFAIL, true);
|
||||||
@ -699,9 +699,9 @@ static int add_sysroot_mount(void) {
|
|||||||
if (!what)
|
if (!what)
|
||||||
return log_oom();
|
return log_oom();
|
||||||
|
|
||||||
fstype = arg_root_fstype ?: "tmpfs"; /* tmpfs, unless overriden */
|
fstype = arg_root_fstype ?: "tmpfs"; /* tmpfs, unless overridden */
|
||||||
|
|
||||||
default_rw = true; /* writable, unless overriden */;
|
default_rw = true; /* writable, unless overridden */;
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
what = fstab_node_to_udev_node(arg_root_what);
|
what = fstab_node_to_udev_node(arg_root_what);
|
||||||
@ -710,7 +710,7 @@ static int add_sysroot_mount(void) {
|
|||||||
|
|
||||||
fstype = arg_root_fstype; /* if not specified explicitly, don't default to anything here */
|
fstype = arg_root_fstype; /* if not specified explicitly, don't default to anything here */
|
||||||
|
|
||||||
default_rw = false; /* read-only, unless overriden */
|
default_rw = false; /* read-only, unless overridden */
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!arg_root_options)
|
if (!arg_root_options)
|
||||||
|
Loading…
Reference in New Issue
Block a user