]> granicus.if.org Git - icinga2/commitdiff
Fix custom macros.
authorGunnar Beutner <gunnar.beutner@netways.de>
Fri, 13 Sep 2013 07:45:24 +0000 (09:45 +0200)
committerGunnar Beutner <gunnar.beutner@netways.de>
Fri, 13 Sep 2013 07:45:24 +0000 (09:45 +0200)
tools/configconvert/Icinga2/ExportIcinga2Cfg.pm

index bddabf161975760823da300c24ef9dee7430a41d..6a94c4bb6958f080154ec9aa1b913f66b2712620 100644 (file)
@@ -478,7 +478,7 @@ sub dump_service_2x {
 
         dump_config_line($icinga2_cfg, "\tmacros += {");
         foreach my $custom_key (keys %{$service_2x->{'__I2CONVERT_CUSTOM_ATTR'}}) {
-            if ($custom_key =~ /^_/) {
+            if ($custom_key !~ /^_/) {
                 next;
             }
 
@@ -623,7 +623,7 @@ sub dump_host_2x {
 
         dump_config_line($icinga2_cfg, "\tmacros += {");
         foreach my $custom_key (keys %{$host_2x->{'__I2CONVERT_CUSTOM_ATTR'}}) {
-            if ($custom_key =~ /^_/) {
+            if ($custom_key !~ /^_/) {
                 next;
             }
 
@@ -847,7 +847,7 @@ sub dump_host_2x {
 
             dump_config_line($icinga2_cfg, "\t\tmacros += {");
             foreach my $custom_key (keys %{$service_2x->{'__I2CONVERT_CUSTOM_ATTR'}}) {
-                if ($custom_key =~ /^_/) {
+                if ($custom_key !~ /^_/) {
                     next;
                 }
 
@@ -952,7 +952,7 @@ sub dump_user_2x {
 
         dump_config_line($icinga2_cfg, "\tmacros += {");
         foreach my $custom_key (keys %{$user_2x->{'__I2CONVERT_CUSTOM_ATTR'}}) {
-            if ($custom_key =~ /^_/) {
+            if ($custom_key !~ /^_/) {
                 next;
             }