mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
sysext: fix tmpfs mount source
It's "sysext", not "sysexit". The string passed here is pure decoration, and noone will see it, since it's only in our private mount namespace. But still, it's a typo, let's fix it
This commit is contained in:
committed by
Zbigniew Jędrzejewski-Szmek
parent
0c98f381e7
commit
2ec0c4f94d
@@ -465,7 +465,7 @@ static int merge_subprocess(Hashmap *images, const char *workspace) {
|
||||
* but let the kernel do that entirely automatically, once our namespace dies. Note that this file
|
||||
* system won't be visible to anyone but us, since we opened our own namespace and then made the
|
||||
* /run/ hierarchy (which our workspace is contained in) MS_SLAVE, see above. */
|
||||
r = mount_nofollow_verbose(LOG_ERR, "sysexit", workspace, "tmpfs", 0, "mode=0700");
|
||||
r = mount_nofollow_verbose(LOG_ERR, "sysext", workspace, "tmpfs", 0, "mode=0700");
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user