diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-10-03 12:19:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-03 12:19:44 +0200 |
commit | 86e94d95d020c34403bc99675318ed4e609ea3a0 (patch) | |
tree | f51d4193b450cdae38d12ca997232c4b7ae4c7f2 /src/nspawn/nspawn.c | |
parent | 68e70ac2b27dcb5007fc4009553472f0b9700e66 (diff) | |
parent | 4e5aa79185d93d20defe1e371e33f89b86d93a3d (diff) | |
download | systemd-86e94d95d020c34403bc99675318ed4e609ea3a0.tar.gz systemd-86e94d95d020c34403bc99675318ed4e609ea3a0.tar.bz2 systemd-86e94d95d020c34403bc99675318ed4e609ea3a0.zip |
Merge pull request #13246 from keszybz/add-SystemdOptions-efi-variable
Add efi variable to augment /proc/cmdline
Diffstat (limited to 'src/nspawn/nspawn.c')
-rw-r--r-- | src/nspawn/nspawn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 0737517ddc..0cd960157c 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -4761,7 +4761,7 @@ static int run(int argc, char *argv[]) { if (r < 0) goto finish; - r = cg_unified_flush(); + r = cg_unified(); if (r < 0) { log_error_errno(r, "Failed to determine whether the unified cgroups hierarchy is used: %m"); goto finish; |