Method: QB::Ansible::Module.load_args

Defined in:
lib/qb/ansible/module.rb

.load_argsObject

Load the raw arguments.



245
246
247
248
249
250
251
# File 'lib/qb/ansible/module.rb', line 245

def self.load_args
  if WANT_JSON_mode?
    load_args_from_JSON_file ARGV[0]
  else
    load_args_from_CLI_options
  end
end