Fix command parsing regression
Fixing ansible's sanity tests led to specifying the commands
argument
for the aoscx_command module as str
, however this module relies on its
underspecification to allow strings, or dictionaries for interactive
prompts.
This CL removes the str specification, updates the type of the
command-parsing structure, and adds an ignore line for the
underspecification of the commands
argument.