Skip to content

Commit b62d081

Browse files
author
Till Brehm
committed
Add ispconfig_admin_password as autoinstall variable.
1 parent 3b764bb commit b62d081

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

docs/autoinstall_samples/autoinstall.conf_sample.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
$autoinstall['http_server'] = 'nginx'; // apache (default), nginx
1212
$autoinstall['ispconfig_port'] = '8080'; // default: 8080
1313
$autoinstall['ispconfig_use_ssl'] = 'y'; // y (default), n
14+
$autoinstall['ispconfig_admin_password'] = 'admin'; // default: admin
1415

1516
/* SSL Settings */
1617
$autoinstall['ssl_cert_country'] = 'AU';

docs/autoinstall_samples/autoinstall.ini.sample

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ mysql_charset=utf8
1010
http_server=apache
1111
ispconfig_port=8080
1212
ispconfig_use_ssl=y
13+
ispconfig_admin_password=admin
1314

1415
[ssl_cert]
1516
ssl_cert_country=AU

install/install.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@
546546

547547
//** Customise the port ISPConfig runs on
548548
$ispconfig_vhost_port = $inst->free_query('ISPConfig Port', '8080','ispconfig_port');
549-
$conf['interface_password'] = $inst->free_query('Admin password', 'admin');
549+
$conf['interface_password'] = $inst->free_query('Admin password', 'admin','ispconfig_admin_password');
550550
if($conf['interface_password'] != 'admin') {
551551
$check = false;
552552
do {

0 commit comments

Comments
 (0)