diff options
author | elijah <elijah@riseup.net> | 2016-04-08 12:41:45 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-04-08 12:41:45 -0700 |
commit | e4f786e229c101cb60626ce23e671c5258466724 (patch) | |
tree | 40dadd2472462c05e731c7685db819d40b18c026 /lib/leap_cli/macros/hosts.rb | |
parent | 8dfb90f0ea7364f43669fe2105c6a031066b468f (diff) |
partials - add support for leap_cli's inheritable service partials (requires latest develop branch leap_cli)
Diffstat (limited to 'lib/leap_cli/macros/hosts.rb')
-rw-r--r-- | lib/leap_cli/macros/hosts.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/macros/hosts.rb b/lib/leap_cli/macros/hosts.rb index 541bbc13..963857ae 100644 --- a/lib/leap_cli/macros/hosts.rb +++ b/lib/leap_cli/macros/hosts.rb @@ -17,7 +17,7 @@ module LeapCli node_list = node_list['environment' => '!local'] end node_list.map {|name, n| - [n.ip_address, (global.facts[name]||{})['ec2_public_ipv4']] + [n.ip_address, (manager.facts[name]||{})['ec2_public_ipv4']] }.flatten.compact.uniq end |