Hi,
Per http://ansible.cc/docs/api.html#distributing-plugins I created action_plugins/my_plugin.py under the same directory that holds my top-level playbook. I also created library/my_plugin, which I suspect has to exist, even if it’s just a stub. However, Ansible did not find my action plug-in. Instead it just tried to run the stub module.
My reading of commit 391fb98e is that plug-ins will now only be found if they’re in a category subdirectory under e.g. action_plugins. Sure enough, moving action_plugins/my_module.py to action_plugins/whatever/my_module.py made Ansible find my action plug-in.
Should I be able to just have action_plugins/my_plugin.py, or must all plug-ins now be categorized? Should I file an issue (whether against code or docs)?
Thanks,
Dale