diff --git a/sysinv/sysinv/sysinv/sysinv/conductor/manager.py b/sysinv/sysinv/sysinv/sysinv/conductor/manager.py index a82425ca5f..a63446410d 100644 --- a/sysinv/sysinv/sysinv/sysinv/conductor/manager.py +++ b/sysinv/sysinv/sysinv/sysinv/conductor/manager.py @@ -7283,12 +7283,11 @@ class ConductorManager(service.PeriodicService): if not os.path.isfile(CFS_DRBDADM_RECONFIGURED): progress = "drbdadm resize all" - cmd = ["drbdadm", "resize", "all"] if standby_host: - stdout, __ = cutils.execute(*cmd, attempts=retry_attempts, run_as_root=True) + cmd = ["drbdadm", "resize", "all"] else: - cmd = cmd + ['--assume-peer-has-space'] - stdout, __ = cutils.execute(*cmd, attempts=retry_attempts, run_as_root=True) + cmd = ["drbdadm", "--", "--assume-peer-has-space", "resize", "all"] + stdout, __ = cutils.execute(*cmd, attempts=retry_attempts, run_as_root=True) LOG.info("Performed %s" % progress) cutils.touch(CFS_DRBDADM_RECONFIGURED)