summaryrefslogtreecommitdiff
path: root/scripts/system/vyatta_update_syslog.pl
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2014-06-23 18:36:49 +0700
committerDaniil Baturin <daniil@baturin.org>2014-06-23 18:36:49 +0700
commitdd80ec321d684962e1d07758f0cd8d855c0181b3 (patch)
treec696475a847dfad2b83e145c61a0d5cf8227e532 /scripts/system/vyatta_update_syslog.pl
parent2294844b6d79d16d37a465bcf0dba37be459f9a7 (diff)
parent7b344f5365c9ec2d4d746b14216cd09c0e40b2a6 (diff)
downloadvyatta-cfg-system-dd80ec321d684962e1d07758f0cd8d855c0181b3.tar.gz
vyatta-cfg-system-dd80ec321d684962e1d07758f0cd8d855c0181b3.zip
Merge pull request #11 from ahaitoute/helium
Bug #195: Added feature to send log message to remote syslog server over UDP or TCP.
Diffstat (limited to 'scripts/system/vyatta_update_syslog.pl')
-rwxr-xr-xscripts/system/vyatta_update_syslog.pl11
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/system/vyatta_update_syslog.pl b/scripts/system/vyatta_update_syslog.pl
index 3421d61a..dd834c92 100755
--- a/scripts/system/vyatta_update_syslog.pl
+++ b/scripts/system/vyatta_update_syslog.pl
@@ -110,7 +110,16 @@ unless (%entries) {
read_config( $config, 'console', $CONSOLE );
foreach my $host ( $config->listNodes('host') ) {
- read_config( $config, "host $host", '@'. $host );
+ my $host_protocol;
+ foreach my $facility ( $config->listNodes("host $host facility") ) {
+ my $protocol = $config->returnValue("host $host facility $facility protocol");
+ if ($protocol eq "tcp") {
+ $host_protocol = "@@";
+ } else {
+ $host_protocol = "@";
+ }
+ read_config( $config, "host $host", $host_protocol. $host );
+ }
}
foreach my $file ( $config->listNodes('file') ) {