add globals to select visible services

This commit is contained in:
Emmanuel Geoffray
2017-12-07 19:12:35 +00:00
parent 3228114dd8
commit 3bcf16a3ba
2 changed files with 15 additions and 0 deletions

View File

@@ -18,7 +18,12 @@ define('RASPI_OPENVPN_SERVER_CONFIG', '/etc/openvpn/server.conf');
define('RASPI_TORPROXY_CONFIG', '/etc/tor/torrc');
// Optional services, set to true to enable.
define('RASPI_HOTSPOT_ENABLED', false );
define('RASPI_NETWORK_ENABLED', false );
define('RASPI_DHCP_ENABLED', false );
define('RASPI_OPENVPN_ENABLED', false );
define('RASPI_TORPROXY_ENABLED', false );
define('RASPI_CONFAUTH_ENABLED', false );
define('RASPI_CHANGETHEME_ENABLED', false );
?>