summaryrefslogtreecommitdiff
path: root/lib/leap_cli/commands/debug.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-04-12 11:07:26 -0700
committerelijah <elijah@riseup.net>2016-04-12 11:07:26 -0700
commitaec082688b8c20b5cd549feb81d1003847d5f744 (patch)
treedc34bedf68d2fffe70157cf66d30b6e4d35f6804 /lib/leap_cli/commands/debug.rb
parent53fdac31bce3a66b37811dbe81e3d3f71c533a0c (diff)
leap_cli: rename 'debug' command to 'info' command, since --debug is already a thing.
Diffstat (limited to 'lib/leap_cli/commands/debug.rb')
-rw-r--r--lib/leap_cli/commands/debug.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/leap_cli/commands/debug.rb b/lib/leap_cli/commands/debug.rb
deleted file mode 100644
index a969b752..00000000
--- a/lib/leap_cli/commands/debug.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-module LeapCli; module Commands
-
- desc 'Output debug information.'
- long_desc 'The FILTER can be the name of a node, service, or tag.'
- arg_name 'FILTER'
- command [:debug, :d] do |c|
- c.action do |global,options,args|
- nodes = manager.filter!(args)
- ssh_connect(nodes, connect_options(options)) do |ssh|
- ssh.leap.debug
- end
- end
- end
-
-end; end