Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
8555470d
Commit
8555470d
authored
Mar 05, 2014
by
Till Brehm
Browse files
Added missing ip addess loop in ispconfig.conf
parent
ccbf1497
Changes
4
Hide whitespace changes
Inline
Side-by-side
install/dist/lib/fedora.lib.php
View file @
8555470d
...
...
@@ -669,6 +669,8 @@ class installer_dist extends installer_base {
}
}
}
$tpl
->
setLoop
(
'ip_adresses'
,
$ip_addresses
);
wf
(
$vhost_conf_dir
.
'/ispconfig.conf'
,
$tpl
->
grab
());
unset
(
$tpl
);
...
...
install/dist/lib/gentoo.lib.php
View file @
8555470d
...
...
@@ -534,6 +534,8 @@ class installer extends installer_base
}
}
}
$tpl
->
setLoop
(
'ip_adresses'
,
$ip_addresses
);
wf
(
$conf
[
'apache'
][
'vhost_conf_dir'
]
.
'/000-ispconfig.conf'
,
$tpl
->
grab
());
unset
(
$tpl
);
...
...
install/dist/lib/opensuse.lib.php
View file @
8555470d
...
...
@@ -684,7 +684,9 @@ class installer_dist extends installer_base {
}
}
}
$tpl
->
setLoop
(
'ip_adresses'
,
$ip_addresses
);
wf
(
$vhost_conf_dir
.
'/ispconfig.conf'
,
$tpl
->
grab
());
unset
(
$tpl
);
...
...
install/lib/installer_base.lib.php
View file @
8555470d
...
...
@@ -1275,7 +1275,9 @@ class installer_base {
}
}
}
$tpl
->
setLoop
(
'ip_adresses'
,
$ip_addresses
);
wf
(
$vhost_conf_dir
.
'/ispconfig.conf'
,
$tpl
->
grab
());
unset
(
$tpl
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment