]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Enable XML manifest by default.
authorOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:50 +0000 (11:23 -0700)
committerOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:50 +0000 (11:23 -0700)
Enable Tools enableXmlManifest by default for quiesced snapshots on Linux.

open-vm-tools/services/plugins/vmbackup/syncManifest.c

index 7166ccc2627f3479a185b37495c4071b2d55d4b6..e63ae777ad94952b166967ba56ca49ddd0e49a5d 100644 (file)
@@ -71,13 +71,9 @@ SyncNewManifest(VmBackupState *state,          // IN
    const char *providerName;
    SyncManifest *manifest;
 
-   /*
-    * XXX - feature is to be disabled by default until approved by QE.
-    */
    if (!VMTools_ConfigGetBoolean(state->ctx->config, "vmbackup",
-                                 syncManifestSwitch, FALSE)) {
-      g_debug("No backup manifest - %s is false\n",
-              syncManifestSwitch);
+                                 syncManifestSwitch, TRUE)) {
+      g_debug("No backup manifest - %s is false\n", syncManifestSwitch);
       return NULL;
    }