File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -306,22 +306,22 @@ def compatible_flavor?(f)
306
306
# overriden by a module this mixin.
307
307
#
308
308
# @param opts [Hash] Hash of configuration options.
309
- def execute_cmdstager_begin ( opts )
309
+ def execute_cmdstager_begin ( opts = { } )
310
310
end
311
311
312
312
# Code to execute after the cmd stager stub. This method is designed to be
313
313
# overriden by a module this mixin.
314
314
#
315
315
# @param opts [Hash] Hash of configuration options.
316
- def execute_cmdstager_end ( opts )
316
+ def execute_cmdstager_end ( opts = { } )
317
317
end
318
318
319
319
# Code called to execute each command via an arbitrary module-defined vector.
320
320
# This method needs to be overriden by modules using this mixin.
321
321
#
322
322
# @param cmd [String] The command to execute.
323
323
# @param opts [Hash] Hash of configuration options.
324
- def execute_command ( cmd , opts )
324
+ def execute_command ( cmd , opts = { } )
325
325
raise NotImplementedError
326
326
end
327
327
You can’t perform that action at this time.
0 commit comments