From: Oliver Kurth Date: Mon, 28 Oct 2019 23:12:39 +0000 (-0700) Subject: Common header file change not directly applicable to open-vm-tools. X-Git-Tag: stable-11.1.0~202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=359b24fa003c8177fa9afbcf2f1214e38f7af29d;p=thirdparty%2Fopen-vm-tools.git Common header file change not directly applicable to open-vm-tools. --- diff --git a/open-vm-tools/lib/include/conf.h b/open-vm-tools/lib/include/conf.h index c494a8e2c..4788a9cb1 100644 --- a/open-vm-tools/lib/include/conf.h +++ b/open-vm-tools/lib/include/conf.h @@ -90,6 +90,64 @@ ****************************************************************************** */ +/* +****************************************************************************** +* 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. +****************************************************************************** +*/ + /* ******************************************************************************