From 9a1597edcbb668dcd6100f3ad9f6e0c109bc51c3 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 28 Apr 2015 11:21:39 +0200 Subject: [PATCH] oops --- source/steps/ChainBootNode.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/steps/ChainBootNode.py b/source/steps/ChainBootNode.py index 8eac1d1..baba483 100644 --- a/source/steps/ChainBootNode.py +++ b/source/steps/ChainBootNode.py @@ -197,10 +197,10 @@ def Run(vars, log): if (vars['ONE_PARTITION'] != '1'): utils.sysexec("umount {}/vservers".format(SYSIMG_PATH), log) - utils.sysexec("umount {}s/proc".format(SYSIMG_PATH), log) - utils.sysexec_noerr("umount {}s/dev".format(SYSIMG_PATH), log) - utils.sysexec_noerr("umount {}s/sys".format(SYSIMG_PATH), log) - utils.sysexec("umount {}s".format(SYSIMG_PATH), log) + utils.sysexec("umount {}/proc".format(SYSIMG_PATH), log) + utils.sysexec_noerr("umount {}/dev".format(SYSIMG_PATH), log) + utils.sysexec_noerr("umount {}/sys".format(SYSIMG_PATH), log) + utils.sysexec("umount {}".format(SYSIMG_PATH), log) utils.sysexec("vgchange -an", log) ROOT_MOUNTED = 0 -- 2.43.0