diff options
author | Christian Hesse <mail@eworm.de> | 2021-07-06 21:41:02 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2021-07-06 21:41:33 +0200 |
commit | 92a97b12ca45c9653b02aa0edb9b167f895c490d (patch) | |
tree | 105ae3be42e1ed3cb599260be8bb752ce8f9451a /ospf-to-leds | |
parent | fcc0d1551a0da553fc2a64cd67bd867a23b00659 (diff) |
ospf-to-leds: do not flood but log properly
Diffstat (limited to 'ospf-to-leds')
-rw-r--r-- | ospf-to-leds | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ospf-to-leds b/ospf-to-leds index 727f33b..40fbbb3 100644 --- a/ospf-to-leds +++ b/ospf-to-leds @@ -18,11 +18,12 @@ :local LED ([ $ParseKeyValueStore ($InstanceVal->"comment") ]->"leds"); :local LEDType [ / system leds get [ find where leds=$LED ] type ]; - $LogPrintExit2 debug $0 ("OSPF instance " . $InstanceVal->"name" . " is " . $InstanceVal->"state" . ".") false; :if ($InstanceVal->"state" = "running" && $LEDType = "off") do={ + $LogPrintExit2 info $0 ("OSPF instance " . $InstanceVal->"name" . " is running, led on!") false; / system leds set type=on [ find where leds=$LED ]; } :if ($InstanceVal->"state" = "down" && $LEDType = "on") do={ + $LogPrintExit2 info $0 ("OSPF instance " . $InstanceVal->"name" . " is down, led off!") false; / system leds set type=off [ find where leds=$LED ]; } } |