]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Common header file change not directly applicable to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Mon, 28 Oct 2019 23:12:39 +0000 (16:12 -0700)
committerOliver Kurth <okurth@vmware.com>
Mon, 28 Oct 2019 23:12:39 +0000 (16:12 -0700)
open-vm-tools/lib/include/conf.h

index c494a8e2cd8b0b64b449823c88cb7a5a294368a1..4788a9cb1eef43ca06b4c8fb0c3ad9d6cca5d113 100644 (file)
  ******************************************************************************
  */
 
+/*
+******************************************************************************
+* BEGIN GuestStore upgrader goodies.
+*/
+
+/**
+ * Defines the string used for the GuestStore upgrade config file group.
+ */
+#define CONFGROUPNAME_GUESTSTOREUPGRADE "guestStoreUpgrade"
+
+/**
+ * Define a custom GuestStore Upgrade poll interval (in seconds).
+ *
+ * @note Illegal values result in a @c g_warning and fallback to the default
+ * poll interval.
+ *
+ * @param int   User-defined poll interval.  Set to 0 to disable polling.
+ */
+#define CONFNAME_GUESTSTOREUPGRADE_POLLINTERVAL "poll-interval"
+
+/**
+ * Defines the value for GuestStore upgrade feature to be enabled or not.
+ *
+ * @note Illegal values result in a @c g_warning and fallback to the default
+ * value.
+ *
+ * @param boolean Set to TRUE to disable publishing.
+ *                Set to FALSE to enable publishing.
+ */
+#define CONFNAME_GUESTSTOREUPGRADE_DISABLED "disabled"
+
+/**
+ * Defines the value for GuestStore upgrade to upgrade or not.
+ *
+ * @note Illegal values result in a @c g_warning and fallback to the default
+ * value.
+ *
+ * @param boolean Set to TRUE to disable publishing.
+ *                Set to FALSE to enable publishing.
+ */
+#define CONFNAME_GUESTSTOREUPGRADE_ALLOW_UPGRADE "allow-upgrade"
+
+/**
+ * Defines the value for GuestStore upgrade to add or remove features or not.
+ *
+ * @note Illegal values result in a @c g_warning and fallback to the default
+ * value.
+ *
+ * @param boolean Set to TRUE to disable publishing.
+ *                Set to FALSE to enable publishing.
+ */
+#define CONFNAME_GUESTSTOREUPGRADE_ALLOW_ADDREMOVE_FEATURE "allow-addremove-feature"
+
+/*
+* END GuestStore upgrader goodies.
+******************************************************************************
+*/
+
 
 /*
  ******************************************************************************