summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2023-02-05 12:51:39 +0200
committerPaul Buetow <paul@buetow.org>2023-02-05 12:51:39 +0200
commit2ad60e2ff818171a204748f8225b9ff56e1e3a7b (patch)
tree4e215344c32d29db187c0d6c8bb31818d0c698ff
parent6ab44403a44622dc2037cc9595b81800a1adde5a (diff)
znc
-rw-r--r--frontends/Rexfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontends/Rexfile b/frontends/Rexfile
index ad26936..1162868 100644
--- a/frontends/Rexfile
+++ b/frontends/Rexfile
@@ -314,7 +314,7 @@ task 'nsd_master', group => 'dnsmaster',
for my $zone (@dns_zones_remove) {
Rex::Logger::info("Dealing with DNS zone removal $zone");
file "/var/nsd/zones/master/$zone.zone", ensure => 'absent';
- }
+ }
service 'nsd' => 'restart' if $restart;
service 'nsd', ensure => 'started';
@@ -388,6 +388,8 @@ desc 'Setup IRC bouncer';
task 'ircbouncer', group => 'ircbouncer',
sub {
pkg 'znc', ensure => present;
+ # Requires runtime config in /var/znc before it can start.
+ # => geheim search var-znc
service 'znc', ensure => 'started';
};