From 7bba85efd90d280fa4168ab0fdf1b42944128e19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?A=2E=20T=C3=A4ffner?= Date: Thu, 1 Sep 2016 15:46:52 +0200 Subject: [PATCH] added autoconfig entries for new service detection --- docs/autoinstall_samples/autoinstall.conf_sample.php | 10 ++++++++++ docs/autoinstall_samples/autoinstall.ini.sample | 11 ++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/docs/autoinstall_samples/autoinstall.conf_sample.php b/docs/autoinstall_samples/autoinstall.conf_sample.php index 187dc68b5c..c55add3a8a 100644 --- a/docs/autoinstall_samples/autoinstall.conf_sample.php +++ b/docs/autoinstall_samples/autoinstall.conf_sample.php @@ -49,4 +49,14 @@ $autoupdate['reconfigure_services'] = 'yes'; // yes (default), no $autoupdate['ispconfig_port'] = '8080'; // default: 8080 $autoupdate['create_new_ispconfig_ssl_cert'] = 'no'; // no (default), yes $autoupdate['reconfigure_crontab'] = 'yes'; // yes (default), no + +/* These are for service-detection (defaulting to old behaviour where alle changes were automatically accepted) */ +$autoupdate['svc_detect_change_mail_server'] = 'yes'; // yes (default), no +$autoupdate['svc_detect_change_web_server'] = 'yes'; // yes (default), no +$autoupdate['svc_detect_change_dns_server'] = 'yes'; // yes (default), no +$autoupdate['svc_detect_change_xmpp_server'] = 'yes'; // yes (default), no +$autoupdate['svc_detect_change_firewall_server'] = 'yes'; // yes (default), no +$autoupdate['svc_detect_change_vserver_server'] = 'yes'; // yes (default), no +$autoupdate['svc_detect_change_db_server'] = 'yes'; // yes (default), no + ?> \ No newline at end of file diff --git a/docs/autoinstall_samples/autoinstall.ini.sample b/docs/autoinstall_samples/autoinstall.ini.sample index bfe4c2d8f8..4abb28dec5 100644 --- a/docs/autoinstall_samples/autoinstall.ini.sample +++ b/docs/autoinstall_samples/autoinstall.ini.sample @@ -47,4 +47,13 @@ reconfigure_permissions_in_master_database=no reconfigure_services=yes ispconfig_port=8080 create_new_ispconfig_ssl_cert=no -reconfigure_crontab=yes \ No newline at end of file +reconfigure_crontab=yes + +; These are for service-detection (defaulting to old behaviour where alle changes were automatically accepted) +svc_detect_change_mail_server=yes +svc_detect_change_web_server=yes +svc_detect_change_dns_server=yes +svc_detect_change_xmpp_server=yes +svc_detect_change_firewall_server=yes +svc_detect_change_vserver_server=yes +svc_detect_change_db_server=yes -- GitLab