diff options
author | elijah <elijah@riseup.net> | 2014-06-04 14:54:19 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-06-04 14:54:19 -0700 |
commit | 2c03995839437729bf48332124a7a30c112dba18 (patch) | |
tree | 8cce19a32d573a35c0df2683a728e691861c2293 /lib/leap_cli/commands | |
parent | dde0c4c9b9444107ac2c991c4c43155d50bc99c0 (diff) |
by default, skip local nodes on `leap facts update`
Diffstat (limited to 'lib/leap_cli/commands')
-rw-r--r-- | lib/leap_cli/commands/facts.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/facts.rb b/lib/leap_cli/commands/facts.rb index 43a04df..d607086 100644 --- a/lib/leap_cli/commands/facts.rb +++ b/lib/leap_cli/commands/facts.rb @@ -79,7 +79,7 @@ module LeapCli; module Commands private def update_facts(global_options, options, args) - nodes = manager.filter(args) + nodes = manager.filter(args, :local => false) new_facts = {} ssh_connect(nodes) do |ssh| ssh.leap.run_with_progress(facter_cmd) do |response| |