diff options
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/network.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm index b295ad3a0..48b9aa86e 100644 --- a/perl-install/network/network.pm +++ b/perl-install/network/network.pm @@ -445,7 +445,11 @@ sub configureNetwork2 { if ($netc->{ZEROCONF_HOSTNAME}) { $in->do_pkgs->ensure_binary_is_installed('tmdns', 'tmdns', 'auto') if !$in->do_pkgs->is_installed('bind'); $in->do_pkgs->ensure_binary_is_installed('zcip', 'zcip', 'auto'); - write_zeroconf("$etc/tmdns.conf", $netc->{ZEROCONF_HOSTNAME}); + write_zeroconf("$etc/tmdns.conf", $netc->{ZEROCONF_HOSTNAME}); + foreach (qw(tmdns zcip)) { + services::start_service_on_boot($_); + services::restart($_); + } } else { #- disable zeroconf require services; |