diff options
author | Benedikt Heumüller <bheum@users.noreply.github.com> | 2017-05-11 15:39:55 +0200 |
---|---|---|
committer | Benedikt Heumüller <bheum@users.noreply.github.com> | 2017-05-11 15:39:55 +0200 |
commit | e201b4c653c5145f70dfdf9d4f1c63d3bc6ad5ff (patch) | |
tree | 9ce4df17fbb2c7de556419c5257a8cd3ba10898d | |
parent | 1310d6ae366b80663302a16af8f257afce7a9ecf (diff) |
Added OX_NODE_IP for hook type: exec
Added OX_NODE_IP to access the IP address for exec commands.
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | lib/oxidized/hook/exec.rb | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -889,6 +889,7 @@ Command is executed with the following environment: ``` OX_EVENT OX_NODE_NAME +OX_NODE_IP OX_NODE_FROM OX_NODE_MSG OX_NODE_GROUP diff --git a/lib/oxidized/hook/exec.rb b/lib/oxidized/hook/exec.rb index 58d6fd5..fa8aff1 100644 --- a/lib/oxidized/hook/exec.rb +++ b/lib/oxidized/hook/exec.rb @@ -67,6 +67,7 @@ class Exec < Oxidized::Hook if ctx.node env.merge!( "OX_NODE_NAME" => ctx.node.name.to_s, + "OX_NODE_IP" => ctx.node.ip.to_s, "OX_NODE_FROM" => ctx.node.from.to_s, "OX_NODE_MSG" => ctx.node.msg.to_s, "OX_NODE_GROUP" => ctx.node.group.to_s, |