diff options
Diffstat (limited to 'netwatch-syslog')
-rw-r--r-- | netwatch-syslog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/netwatch-syslog b/netwatch-syslog new file mode 100644 index 0000000..56e59ea --- /dev/null +++ b/netwatch-syslog @@ -0,0 +1,14 @@ +# RouterOS script: netwatch-syslog +# Copyright (c) 2013-2018 Christian Hesse <mail@eworm.de> +# +# manage remote logging facilities + +:local remote [ /system logging action get [ :pick [ find where target=remote ] 0 ] remote ]; + +if ([ / tool netwatch get [ find where host=$remote ] status ] = "up") do={ + / system logging set disabled=no [ find where action=remote disabled=yes ]; +} else={ + / system logging set disabled=yes [ find where action=remote disabled=no ]; +} + +/ system scheduler set disabled=yes [ find where name=netwatch-syslog disabled=no ]; |