diff options
author | MrRJ45 <couton@gmail.com> | 2015-08-24 12:07:40 +0100 |
---|---|---|
committer | MrRJ45 <couton@gmail.com> | 2015-08-24 12:07:40 +0100 |
commit | 03ce79f1809e9fec340634004122272e0b9b9d95 (patch) | |
tree | 50552c1589a430525f091b748b25740bee3ff0c8 | |
parent | d3aed2dce599b35afeb5cb2001cccf8f8c326d9e (diff) |
Fix Listening on Port
Forgot to remove the argument from being used, will cause some issues as it seems to listen on a random port otherwise!
-rw-r--r-- | extra/syslog.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/syslog.rb b/extra/syslog.rb index f042744..87227bb 100644 --- a/extra/syslog.rb +++ b/extra/syslog.rb @@ -137,5 +137,5 @@ module Oxidized end end -Oxidized::SyslogMonitor.udp ARGV[0] +Oxidized::SyslogMonitor.udp #Oxidized::SyslogMonitor.file '/var/log/poop' |