mirror of
https://github.com/netdata/netdata.git
synced 2025-05-10 11:50:55 +00:00

Preparing for the cloud release. This changes how we handle the feature flag so that it no longer requires installer switches and can be set from the config file. This still requires internal access to use and is not ready for public access yet.
18 lines
734 B
C
18 lines
734 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "common.h"
|
|
|
|
char *netdata_configured_hostname = NULL;
|
|
char *netdata_configured_user_config_dir = CONFIG_DIR;
|
|
char *netdata_configured_stock_config_dir = LIBCONFIG_DIR;
|
|
char *netdata_configured_log_dir = LOG_DIR;
|
|
char *netdata_configured_primary_plugins_dir = NULL;
|
|
char *netdata_configured_web_dir = WEB_DIR;
|
|
char *netdata_configured_cache_dir = CACHE_DIR;
|
|
char *netdata_configured_varlib_dir = VARLIB_DIR;
|
|
char *netdata_configured_home_dir = CACHE_DIR;
|
|
char *netdata_configured_host_prefix = NULL;
|
|
char *netdata_configured_timezone = NULL;
|
|
int netdata_ready;
|
|
int netdata_cloud_setting;
|
|
|