From fa462938fbf716a22b3c3902de307da6939d9923 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 2 May 2013 01:20:48 +0200 Subject: [PATCH] expand fail2ban templates during bootstrap-console-save event --- createlinks | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/createlinks b/createlinks index 711bf49..cc05c48 100644 --- a/createlinks +++ b/createlinks @@ -3,9 +3,12 @@ use esmith::Build::CreateLinks qw(:all); templates2events("/etc/rc.d/init.d/masq", "fail2ban-update"); -templates2events("/etc/fail2ban/jail.conf", "fail2ban-conf"); -templates2events("/etc/fail2ban/fail2ban.conf", "fail2ban-conf"); -templates2events("/etc/logrotate.d/fail2ban", "fail2ban-conf"); + +foreach my $event qw(fail2ban-conf bootstrap-console-save){ + templates2events("/etc/fail2ban/jail.conf", "$event"); + templates2events("/etc/fail2ban/fail2ban.conf", "$event"); + templates2events("/etc/logrotate.d/fail2ban", "$event"); +} safe_symlink("adjust", "root/etc/e-smith/events/fail2ban-update/services2adjust/masq"); safe_symlink("restart", "root/etc/e-smith/events/fail2ban-conf/services2adjust/fail2ban");