standalone=1 is the default, as currently used by rhevh. Managed mode (non-standalone) is used by e.g. ovirt-server: during boot node looks up the management server via DNS SRV records, and retrieves its configuration. --- scripts/ovirt-early | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 14a45b0..11911b1 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -474,6 +474,10 @@ start_ovirt_early () { persist /etc/shadow /etc/passwd fi ;; + standalone=no | standalone=0 | ovirt_standalone=no | ovirt_standalone=0) + standalone=0 + bootparams="$bootparams $i" + ;; standalone* | ovirt_standalone*) standalone=1 bootparams="$bootparams $i" -- 1.7.3.4