Skip to content

Commit 8555470

Browse files
author
Till Brehm
committed
Added missing ip addess loop in ispconfig.conf
1 parent ccbf149 commit 8555470

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

install/dist/lib/fedora.lib.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,8 @@ public function configure_apache()
669669
}
670670
}
671671
}
672+
673+
$tpl->setLoop('ip_adresses',$ip_addresses);
672674

673675
wf($vhost_conf_dir.'/ispconfig.conf', $tpl->grab());
674676
unset($tpl);

install/dist/lib/gentoo.lib.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -534,6 +534,8 @@ public function configure_apache()
534534
}
535535
}
536536
}
537+
538+
$tpl->setLoop('ip_adresses',$ip_addresses);
537539

538540
wf($conf['apache']['vhost_conf_dir'].'/000-ispconfig.conf', $tpl->grab());
539541
unset($tpl);

install/dist/lib/opensuse.lib.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,9 @@ public function configure_apache()
684684
}
685685
}
686686
}
687-
687+
688+
$tpl->setLoop('ip_adresses',$ip_addresses);
689+
688690
wf($vhost_conf_dir.'/ispconfig.conf', $tpl->grab());
689691
unset($tpl);
690692

install/lib/installer_base.lib.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,9 @@ public function configure_apache() {
12751275
}
12761276
}
12771277
}
1278-
1278+
1279+
$tpl->setLoop('ip_adresses',$ip_addresses);
1280+
12791281
wf($vhost_conf_dir.'/ispconfig.conf', $tpl->grab());
12801282
unset($tpl);
12811283

0 commit comments

Comments
 (0)