From 3a77ab2c9cc82853ef5b0add4f15227cc6d696a9 Mon Sep 17 00:00:00 2001 From: elijah Date: Mon, 27 May 2013 13:59:02 -0700 Subject: added support for disabling nodes --- lib/leap_cli/commands/list.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib/leap_cli/commands/list.rb') diff --git a/lib/leap_cli/commands/list.rb b/lib/leap_cli/commands/list.rb index 4ff2367..7e803d4 100644 --- a/lib/leap_cli/commands/list.rb +++ b/lib/leap_cli/commands/list.rb @@ -13,8 +13,12 @@ module LeapCli; module Commands arg_name 'FILTER', :optional => true command :list do |c| c.flag 'print', :desc => 'What attributes to print (optional)' + c.switch 'disabled', :desc => 'Include disabled nodes in the list.', :negatable => false c.action do |global_options,options,args| puts + if options['disabled'] + manager.load(:include_disabled => true) # reload, with disabled nodes + end if options['print'] print_node_properties(manager.filter(args), options['print']) else @@ -39,9 +43,9 @@ module LeapCli; module Commands node.evaluate value = properties.collect{|prop| if node[prop].nil? - "[null]" + "null" elsif node[prop] == "" - "[empty]" + "empty" else node[prop] end -- cgit v1.2.3