rboss 0.9.1 → 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/.idea/encodings.xml +5 -0
  3. data/.idea/misc.xml +5 -0
  4. data/.idea/modules.xml +9 -0
  5. data/.idea/rboss.iml +65 -0
  6. data/.idea/scopes/scope_settings.xml +5 -0
  7. data/.idea/vcs.xml +7 -0
  8. data/Gemfile +2 -2
  9. data/README.md +34 -397
  10. data/bin/rboss-cli +77 -28
  11. data/lib/rboss.rb +10 -12
  12. data/lib/rboss/cli/invoker.rb +31 -18
  13. data/lib/rboss/cli/mappings.rb +11 -10
  14. data/lib/rboss/cli/mappings/resources/connector.yaml +2 -2
  15. data/lib/rboss/cli/mappings/resources/datasource.yaml +5 -5
  16. data/lib/rboss/cli/mappings/resources/deployment-scanner.yaml +3 -3
  17. data/lib/rboss/cli/mappings/resources/interface.yaml +2 -2
  18. data/lib/rboss/cli/mappings/resources/jdbc-driver.yaml +12 -0
  19. data/lib/rboss/cli/mappings/resources/jms-queue.yaml +44 -0
  20. data/lib/rboss/cli/mappings/resources/runtime.yaml +34 -0
  21. data/lib/rboss/cli/mappings/resources/server.yaml +8 -8
  22. data/lib/rboss/cli/resource.rb +60 -37
  23. data/lib/rboss/cli/result_parser.rb +29 -5
  24. data/lib/rboss/plaftorm.rb +2 -25
  25. data/lib/rboss/utils.rb +2 -8
  26. data/lib/rboss/version.rb +1 -1
  27. data/lib/rboss/view/colorizers.rb +4 -2
  28. data/lib/rboss/view/formatters.rb +37 -0
  29. data/lib/rboss/view/table_builder.rb +2 -2
  30. data/rboss-cli-bash-completion +82 -0
  31. data/rboss.gemspec +12 -12
  32. data/rboss.iml +6 -7
  33. data/rboss.ipr +2 -11
  34. metadata +23 -53
  35. data/bin/rboss-profile +0 -125
  36. data/bin/rboss-twiddle +0 -204
  37. data/lib/rboss/bin/command_actions.rb +0 -125
  38. data/lib/rboss/cli/mappings/resources/jdbc_driver.yaml +0 -12
  39. data/lib/rboss/component_processor.rb +0 -179
  40. data/lib/rboss/components/component.rb +0 -58
  41. data/lib/rboss/components/datasource.rb +0 -179
  42. data/lib/rboss/components/deploy_folder.rb +0 -104
  43. data/lib/rboss/components/hypersonic_replacer.rb +0 -58
  44. data/lib/rboss/components/jbossweb.rb +0 -119
  45. data/lib/rboss/components/jmx.rb +0 -88
  46. data/lib/rboss/components/mod_cluster.rb +0 -81
  47. data/lib/rboss/components/org/6.0/deploy_folder.rb +0 -33
  48. data/lib/rboss/components/org/jmx.rb +0 -59
  49. data/lib/rboss/components/profile_folder.rb +0 -44
  50. data/lib/rboss/components/resource.rb +0 -52
  51. data/lib/rboss/components/restore_slimming.rb +0 -46
  52. data/lib/rboss/components/run_conf.rb +0 -90
  53. data/lib/rboss/components/run_conf.yaml +0 -22
  54. data/lib/rboss/components/service_script.rb +0 -55
  55. data/lib/rboss/components/slimming.rb +0 -107
  56. data/lib/rboss/components/slimming.yaml +0 -110
  57. data/lib/rboss/components/soa-p/hypersonic_replacer.rb +0 -79
  58. data/lib/rboss/components/soa-p/jmx.rb +0 -47
  59. data/lib/rboss/components/xadatasource.rb +0 -67
  60. data/lib/rboss/file_processor.rb +0 -111
  61. data/lib/rboss/jboss_path.rb +0 -74
  62. data/lib/rboss/jboss_profile.rb +0 -350
  63. data/lib/rboss/resources/jboss_init_redhat.sh.erb +0 -140
  64. data/lib/rboss/resources/mod_cluster.sar/META-INF/mod_cluster-jboss-beans.xml +0 -282
  65. data/lib/rboss/resources/mod_cluster.sar/mod_cluster-1.1.2.Final.jar +0 -0
  66. data/lib/rboss/resources/run.conf.bat.erb +0 -60
  67. data/lib/rboss/resources/run.conf.erb +0 -62
  68. data/lib/rboss/twiddle.rb +0 -25
  69. data/lib/rboss/twiddle/base_monitor.rb +0 -88
  70. data/lib/rboss/twiddle/mbean.rb +0 -148
  71. data/lib/rboss/twiddle/monitor.rb +0 -222
  72. data/lib/rboss/twiddle/twiddle.rb +0 -87
@@ -32,13 +32,14 @@ require 'yummi'
32
32
  include RBoss::Platform
33
33
 
34
34
  params = {}
35
- @conf_dir = File.expand_path "~/.rboss"
36
- servers_file = "#@conf_dir/jboss-cli-servers.yaml"
35
+ @conf_dir = File.expand_path '~/.rboss'
36
+ servers_file = "#{@conf_dir}/jboss-cli-servers.yaml"
37
37
  @resources = {}
38
+ @last_resource = nil
38
39
  @parameters = {}
39
40
  @servers_file = File.expand_path(servers_file)
40
41
  save = false
41
- params[:jboss_home] = (ENV["RBOSS_CLI_HOME"] or Dir.pwd)
42
+ params[:jboss_home] = (ENV['RBOSS_CLI_HOME'] or Dir.pwd)
42
43
  params[:host] = '127.0.0.1'
43
44
  params[:port] = '9999'
44
45
 
@@ -49,15 +50,15 @@ end
49
50
 
50
51
  opts = OptionParser::new
51
52
 
52
- opts.separator "Environment Options".bold.white
53
+ opts.separator 'Environment Options'.bold.white
53
54
 
54
- opts.on('-j', '--jboss-home PATH', 'Defines the JBOSS_HOME variable') do |home|
55
+ opts.on('-j', '--jboss-home PATH', 'Defines the JBoss to use jboss-cli') do |home|
55
56
  params[:jboss_home] = home
56
57
  end
57
58
 
58
59
  opts.separator "\nServer Options".bold.white
59
60
 
60
- opts.on('-s URL', 'Defines the JBoss server') do |server|
61
+ opts.on('-s URL', 'Defines the JBoss server url') do |server|
61
62
  params[:server] = server
62
63
  end
63
64
  opts.on('--host HOST', 'Defines the JBoss host') do |host|
@@ -75,13 +76,24 @@ end
75
76
  opts.on('--save SERVER_NAME', "Saves the server configuration in #{servers_file}") do |server|
76
77
  save = server
77
78
  end
79
+ opts.on('--list-servers', 'List configured servers') do
80
+ load_yaml.each_key { |name| puts name }
81
+ exit
82
+ end
83
+ opts.on('--hosts', 'Shows the Domain Hosts available') do
84
+ @native = 'ls host'
85
+ end
86
+ opts.on('--servers', 'Shows the Domain Servers available') do
87
+ @native = "ls /host=#{@domain_host}/server"
88
+ end
78
89
 
79
90
  opts.separator "\nCLI Options".bold.white
80
91
 
81
- opts.on('--start-cli', 'Starts the JBoss Management CLI connected to the configured server in interactive mode') do
92
+ opts.on('--start-cli', 'Starts the JBoss Management CLI connected to the
93
+ configured server in interactive mode') do
82
94
  @start = true
83
95
  end
84
- opts.on('-c', '--connect SERVER_NAME',
96
+ opts.on('--connect SERVER_NAME',
85
97
  "Uses a configured server in #{servers_file}") do |server|
86
98
  config = load_yaml[server]
87
99
  abort "No configuration for #{server}" unless config
@@ -89,13 +101,16 @@ opts.on('-c', '--connect SERVER_NAME',
89
101
  params[key.to_sym] = value
90
102
  end
91
103
  end
92
- opts.on('--native COMMANDS', Array, 'Executes the given commands using cli interface (each command must be comma separated)') do |commands|
104
+ opts.on('--native COMMANDS', Array, 'Executes the given commands (comma
105
+ separated) using cli interface') do |commands|
93
106
  @native = commands
94
107
  end
95
- opts.on('--domain-host DOMAIN_HOST', 'Sets the domain host (for using in domain mode)') do |host|
108
+ opts.on('--domain-host DOMAIN_HOST',
109
+ 'Sets the domain host (for using in domain mode)') do |host|
96
110
  @domain_host = host
97
111
  end
98
- opts.on('--domain-server DOMAIN_HOST', 'Sets the domain server (for using in domain mode)') do |server|
112
+ opts.on('--domain-server DOMAIN_HOST',
113
+ 'Sets the domain server (for using in domain mode)') do |server|
99
114
  @domain_server = server
100
115
  end
101
116
  opts.on('--script FILE', 'Executes the script in the cli interface') do |file|
@@ -108,6 +123,7 @@ RBoss::Cli::Mappings.resource_mappings.each do |name, config|
108
123
  if config[:description]
109
124
  if config[:scan]
110
125
  opts.on("--#{name} [NAMES]", Array, config[:description]) do |resources|
126
+ @last_resource = name
111
127
  @resources[name] = resources
112
128
  end
113
129
  else
@@ -118,7 +134,7 @@ RBoss::Cli::Mappings.resource_mappings.each do |name, config|
118
134
  end
119
135
  end
120
136
 
121
- opts.separator ""
137
+ opts.separator ''
122
138
 
123
139
  opts.on('--all', 'Display all available info') do
124
140
  RBoss::Cli::Mappings.resource_mappings.each do |name, config|
@@ -128,22 +144,37 @@ end
128
144
 
129
145
  opts.separator "\nResource Options".bold.white
130
146
 
131
- opts.on('-l', '--list-operations', 'Lists the available operations for a resource') do
147
+ opts.on('-l', '--list-operations', 'Lists the available operations
148
+ for a resource') do
132
149
  @operation = 'read-operation-names'
133
150
  end
134
- opts.on('-d', '--detail-operation NAME', 'Shows the operation details') do |operation_name|
151
+ opts.on('-n', '--list-resource-names', 'Lists the available names for a resource') do
152
+ @operation = 'list-resource-names'
153
+ @resources = {
154
+ @last_resource => nil
155
+ }
156
+ end
157
+ opts.on('-d', '--detail NAME', 'Shows the operation details') do |operation_name|
135
158
  @operation = 'read-operation-description'
136
159
  @parameters = {'name' => operation_name}
137
160
  end
138
- opts.on('-a', '--args PARAMETERS', Array,
139
- 'Specifies parameters in form of (name=value) for use with operation') do |parameters|
140
- @parameters = Hash[(parameters.collect { |p| p.split( /=/, 2) })]
161
+ opts.on('-r', '--attribute NAME', 'Reads the attribute') do |name|
162
+ @operation = 'read-attribute'
163
+ @parameters = {
164
+ 'name' => name,
165
+ 'include-defaults' => true
166
+ }
167
+ end
168
+ opts.on('-a', '--args PARAMETERS', Array, 'Specifies parameters in form of
169
+ (name=value) for use with operation') do |parameters|
170
+ @parameters = Hash[(parameters.collect { |p| p.split(/=/, 2) })]
141
171
  end
142
172
  opts.on('-o', '--operation NAME',
143
173
  'Sets the operation to invoke (Defaults to "read-resource")') do |name|
144
174
  @operation = name
145
175
  end
146
- opts.on('--skip-optional', 'Skips optional parameters while invoking a command ') do
176
+ opts.on('--skip-optional', 'Skips optional parameters while invoking
177
+ a command ') do
147
178
  params[:skip_optional] = true
148
179
  end
149
180
 
@@ -153,15 +184,31 @@ opts.on('--loop INTERVAL', Float, 'Run inside a loop') do |interval|
153
184
  @loop = true
154
185
  @interval = interval
155
186
  end
156
- opts.on('--no-color', 'Do not colorize output') do
157
- require 'yummi/no_colors'
187
+ opts.on('--no-colors', 'Do not colorize output') do
188
+ Yummi.no_colors
158
189
  end
159
- opts.on('-v', '--verbose', 'Displays jboss-cli commands before execution') do
190
+ opts.on('--verbose', 'Displays jboss-cli commands and results') do
160
191
  params[:log_level] = Logger::DEBUG
161
192
  end
162
- opts.on("-h", "--help", "Shows this help message") do
193
+ opts.on('-v', '--version', 'Shows rboss version') do
194
+ puts RBoss::VERSION; exit
195
+ end
196
+ opts.on('-h', '--help', 'Shows this help message') do
163
197
  puts opts; exit
164
198
  end
199
+
200
+ # Autocomplete options
201
+ case ARGV[0]
202
+ when 'options'
203
+ opts.top.short.each do |o|
204
+ puts "-#{o[0]}"
205
+ end
206
+ opts.top.long.each do |o|
207
+ puts "--#{o[0]}"
208
+ end
209
+ exit
210
+ end
211
+
165
212
  opts.parse!(ARGV) rescue abort 'Invalid Option! Use --help or -h for usage help.'.red
166
213
 
167
214
  @jboss_home = params[:jboss_home]
@@ -183,24 +230,24 @@ if save
183
230
  f = File.open(@servers_file, 'w')
184
231
  YAML::dump(config, f)
185
232
  f.close
186
- puts "Configuration saved!".green
233
+ puts 'Configuration saved!'.green
187
234
  exit 0
188
235
  end
189
236
 
190
237
  if @start
191
- puts "Starting JBoss Management CLI connecting to ".bold.white << "#{@jboss_cli.server}".bold.green
238
+ puts 'Starting JBoss Management CLI connecting to '.bold.white << "#{@jboss_cli.server}".bold.green
192
239
  system "#{@jboss_cli.command} --connect"
193
240
  exit 0
194
241
  end
195
242
 
196
243
  if @native
197
244
  result = @jboss_cli.execute(@native)
198
- puts result.on_box
245
+ puts result
199
246
  exit 0
200
247
  end
201
248
 
202
249
  if @script
203
- system "#{@jboss_cli.command} --connect --file #{@script}"
250
+ system "#{@jboss_cli.command} --connect --file='#{@script}'"
204
251
  exit 0
205
252
  end
206
253
 
@@ -216,10 +263,11 @@ def execute_actions
216
263
  begin
217
264
  content = @jboss_cli.invoke(@operation, @resources, @parameters)
218
265
  system clear if @loop
219
- puts Yummi.colorize(Time.now.strftime("At %H:%M:%S%n"), :white) if @loop
220
266
  puts content.chomp
267
+ puts Time.now.strftime('%nAt %d-%m-%Y %H:%M:%S').bold.white if @loop
221
268
  rescue RBoss::Cli::InvocationFailed => e
222
269
  puts e.message.red
270
+ exit 1
223
271
  end
224
272
  end
225
273
 
@@ -234,4 +282,5 @@ begin
234
282
 
235
283
  rescue Interrupt
236
284
  puts "\nAborted!".colorize(:red)
237
- end
285
+ exit 1
286
+ end
@@ -20,17 +20,15 @@
20
20
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
21
  # THE SOFTWARE.
22
22
 
23
- require_relative "rboss/version"
24
- require_relative "rboss/plaftorm"
25
- require_relative "rboss/view/colorizers"
26
- require_relative "rboss/view/formatters"
27
- require_relative "rboss/view/health_checkers"
28
- require_relative "rboss/view/table_builder"
29
- require_relative "rboss/jboss_profile"
30
- require_relative "rboss/twiddle"
31
- require_relative "rboss/cli/invoker"
32
- require_relative "rboss/bin/command_actions"
23
+ require_relative 'rboss/version'
24
+ require_relative 'rboss/utils'
25
+ require_relative 'rboss/plaftorm'
26
+ require_relative 'rboss/view/colorizers'
27
+ require_relative 'rboss/view/formatters'
28
+ require_relative 'rboss/view/health_checkers'
29
+ require_relative 'rboss/view/table_builder'
30
+ require_relative 'rboss/cli/invoker'
33
31
 
34
- file = File.expand_path("~/.rboss/rboss.rb")
32
+ file = File.expand_path('~/.rboss/rboss.rb')
35
33
 
36
- eval File.read(file), binding, file if File.exist? file
34
+ eval File.read(file), binding, file if File.exist? file
@@ -25,6 +25,7 @@ require_relative 'resource'
25
25
  require_relative 'mappings'
26
26
 
27
27
  require 'logger'
28
+ require 'io/console'
28
29
 
29
30
  require 'yummi'
30
31
  require 'yaml'
@@ -71,15 +72,26 @@ module RBoss
71
72
  @domain_host = "/host=#{host}"
72
73
  end
73
74
 
74
- def domain_server=(host)
75
- @domain_server = "/server=#{host}"
75
+ def domain_server=(server)
76
+ @domain_server = "/server=#{server}"
77
+ end
78
+
79
+ def server
80
+ "#{@domain_host}#{@domain_server}"
76
81
  end
77
82
 
78
83
  def command
79
84
  command = "#{jboss_cli} --connect"
80
85
  command << " --controller=#@server" if @server
81
- command << " --user='#@user'" if @user
82
- command << " --password='#@password'" if @password
86
+ if @user
87
+ command << " --user='#@user'"
88
+ unless @password
89
+ puts 'Input server password: '.blue.bold
90
+ @password = STDIN.noecho(&:gets).chomp
91
+ puts 'Password saved for this session!'.green
92
+ end
93
+ command << " --password='#@password'"
94
+ end
83
95
  command
84
96
  end
85
97
 
@@ -104,7 +116,7 @@ module RBoss
104
116
  props ||= {}
105
117
  builder = CommandBuilder::new operation
106
118
  help_printed = false
107
- info = Yummi::colorize('Please input the requested parameters', :yellow)
119
+ info = 'Please input the requested parameters'.yellow
108
120
  props.each do |name, detail|
109
121
  next if (@skip_optional and (not detail['required'] or detail['default']))
110
122
  parameter_type = detail['type']
@@ -112,45 +124,46 @@ module RBoss
112
124
  unless input
113
125
  puts info unless help_printed
114
126
  help_printed = true
115
- input_message = Yummi::colorize(name, :intense_blue)
127
+ input_message = name.bold.blue
116
128
  required = detail['required']
117
129
  default_value = detail['default']
118
130
  input_message << ' | ' << RBoss::Colorizers.type(parameter_type).colorize(parameter_type)
119
- input_message << ' | ' << Yummi::colorize('Required', :red) if required
120
- input_message << ' | ' << Yummi::colorize('Optional', :cyan) unless required
121
- input_message << ' | ' << Yummi::colorize("[#{default_value}]", :blue) if default_value
122
- input_message << "\n" << Yummi::colorize(detail['description'], 'bold.black')
131
+ input_message << ' | ' << 'Required'.red if required
132
+ input_message << ' | ' << 'Optional'.cyan unless required
133
+ input_message << ' | ' << "[#{default_value}]".blue if default_value
134
+ input_message << "\n" << detail['description'].bold
123
135
  puts input_message
124
136
  input = get_input
125
137
  while required and input.empty?
126
- puts Yummi::colorize('Required parameter!', :red)
138
+ puts 'Required parameter!'.red
127
139
  input = get_input
128
140
  end
129
141
  end
130
142
  if input.empty?
131
- puts Yummi::colorize('Parameter skipped!', :yellow)
143
+ puts 'Parameter skipped!'.yellow
132
144
  next
133
145
  end
134
146
  begin
135
147
  builder << {:name => name, :value => parameter_type.convert(input)}
136
148
  rescue Exception => e
137
- puts Yummi::colorize('Your input could not be converted:', :yellow)
138
- puts Yummi::colorize(e.message, :red)
139
- puts Yummi::colorize('This will not affect other inputs, you can continue to input other values.', :yellow)
149
+ puts 'Your input could not be converted:'.yellow
150
+ puts e.message.red
151
+ puts 'This will not affect other inputs, you can continue to input other values.'.yellow
140
152
  puts 'Press ENTER to continue'
141
153
  gets
142
154
  end
143
155
  end
144
156
  result = result("#{path}:#{builder}")
145
- #TODO print a table using the returned parameters
146
- YAML::dump(result).on_box
157
+ format result
147
158
  end
148
159
 
149
160
  def execute(commands)
150
161
  commands = [commands] if commands.is_a? String
151
162
  exec = "#{command} --command#{commands.size > 1 ? 's' : ''}=\"#{commands.join ','}\""
152
163
  @logger.debug exec
153
- `#{exec}`.chomp
164
+ result = `#{exec}`.chomp
165
+ @logger.debug result
166
+ result
154
167
  end
155
168
 
156
169
  def result(commands)
@@ -37,17 +37,18 @@ module RBoss
37
37
  mapping = YAML::load_file(file).symbolize_keys
38
38
  @resource_mappings[name] = mapping
39
39
  if mapping[:print]
40
- mapping[:print].each do |table|
41
- if table[:id]
40
+ mapping[:print].each do |print|
41
+ print[:command] ||= '${path}:${read_resource}'
42
+ if print[:id]
42
43
  new_mapping = mapping.dup
43
- new_mapping[:print] = [table]
44
- new_mapping[:description] = table[:title]
44
+ new_mapping[:print] = [print]
45
+ new_mapping[:description] = print[:title]
45
46
  new_mapping[:derived] = true
46
- if table[:path]
47
- new_mapping[:path] = table[:path].gsub '${PATH}', mapping[:path]
48
- table[:path] = new_mapping[:path]
47
+ if print[:path]
48
+ new_mapping[:path] = print[:path].gsub '${path}', mapping[:path]
49
+ print[:path] = new_mapping[:path]
49
50
  end
50
- new_key = "#{name}-#{table[:id]}"
51
+ new_key = "#{name}-#{print[:id]}"
51
52
  @resource_mappings[new_key] = new_mapping
52
53
  end
53
54
  end
@@ -63,12 +64,12 @@ module RBoss
63
64
 
64
65
  def load_default_resources
65
66
  load_resources File.join(File.dirname(__FILE__), 'mappings/resources')
66
- file = File.expand_path("~/.rboss/rboss-cli/resources")
67
+ file = File.expand_path('~/.rboss/rboss-cli/resources')
67
68
  if File.exist? file
68
69
  load_resources file
69
70
  end
70
71
  @resource_mappings[''] = {
71
- :path => ''
72
+ :path => ''
72
73
  }
73
74
  end
74
75
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  description: Details Connectors
3
- path: ${DOMAIN_HOST}${DOMAIN_SERVER}/subsystem=web/connector=${NAME}
4
- scan: ls ${DOMAIN_HOST}${DOMAIN_SERVER}/subsystem=web/connector
3
+ path: ${server}/subsystem=web/connector=${name}
4
+ scan: ls ${server}/subsystem=web/connector
5
5
  print:
6
6
  - title: Connectors
7
7
  layout: vertical
@@ -1,7 +1,7 @@
1
1
  ---
2
- description: Datasource Information
3
- path: ${DOMAIN_HOST}${DOMAIN_SERVER}/subsystem=datasources/data-source=${NAME}
4
- scan: ls ${DOMAIN_HOST}${DOMAIN_SERVER}/subsystem=datasources/data-source
2
+ description: Details Datasource Information
3
+ path: ${server}/subsystem=datasources/data-source=${name}
4
+ scan: ls ${server}/subsystem=datasources/data-source
5
5
  print:
6
6
  - id: config
7
7
  title: Datasource Details
@@ -40,7 +40,7 @@ print:
40
40
 
41
41
  - id: pool
42
42
  title: Datasource Pool Statistics
43
- path: ${PATH}/statistics=pool
43
+ path: ${path}/statistics=pool
44
44
  layout: vertical
45
45
  properties:
46
46
  - ActiveCount
@@ -77,7 +77,7 @@ print:
77
77
 
78
78
  - id: jdbc
79
79
  title: Datasource JDBC Statistics
80
- path: ${PATH}/statistics=jdbc
80
+ path: ${path}/statistics=jdbc
81
81
  properties:
82
82
  - PreparedStatementCacheCurrentSize
83
83
  - PreparedStatementCacheAccessCount
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  description: Details Deployment Scanner
3
- path: ${DOMAIN_HOST}${DOMAIN_SERVER}/subsystem=deployment-scanner/scanner=${NAME}
4
- scan: ls ${DOMAIN_HOST}${DOMAIN_SERVER}/subsystem=deployment-scanner/scanner
3
+ path: ${server}/subsystem=deployment-scanner/scanner=${name}
4
+ scan: ls ${server}/subsystem=deployment-scanner/scanner
5
5
  print:
6
6
  - title: Scanner
7
7
  layout: vertical
@@ -13,7 +13,7 @@ print:
13
13
  - path
14
14
  - relative-to
15
15
  - scan-enabled
16
- - scan-interv
16
+ - scan-interval
17
17
  header:
18
18
  - Auto Deploy Exploded
19
19
  - Auto Deploy XML