Giter Site home page Giter Site logo

Comments (5)

bcoca avatar bcoca commented on May 26, 2024

the windows plugins are powershell (.ps1) so there should be no problem detecting them w/o __init__.py

from ansible-modules-extras.

sivel avatar sivel commented on May 26, 2024

The .py files do hold the docs and examples though which would be needed for ansible-docs.

Unsure about any problems not detecting the module if the .py is missing. For some reason I had remembered it being the case that both needed to exist.

from ansible-modules-extras.

lenaten avatar lenaten commented on May 26, 2024

Look this function in ansible/lib/ansible/utils/plugins.py:

def find_plugin(self, name, suffixes=None, transport=''):
        ''' Find a plugin named name '''

        if not suffixes:
            if self.class_name:
                suffixes = ['.py']
            else:
                if transport == 'winrm':
                    suffixes = ['.ps1', '']
                else:
                    suffixes = ['.py', '']

As I see in debug, transport is always empty, even in winrm connection, so only .py files detected as plugins.

We can also change the condition to "name.startswith("win_")" instead of "transport == 'winrm'", Both solve the problem. Anyway I think that transport shouldn't be coupled with file extension.

__init__.py missing only in windows directory , so you can reproduce the problem by use this playbook:

---
- hosts: windows
  tasks:
  - win_chocolatey:
      name: git

as result you will see this message:
"ERROR: win_chocolatey is not a legal parameter in an Ansible task or handler"

from ansible-modules-extras.

bcoca avatar bcoca commented on May 26, 2024

I'm not sure how that can be the case, If it loads the .py it would not do any work as the .ps1 are the ones with the actual code. I merged the PR anyways as it fixes the issue with ansible-doc.

if the transport is not set to winrm these modules would do nothing as it would try to execute the doc only .py files.

from ansible-modules-extras.

lenaten avatar lenaten commented on May 26, 2024

every plugin checked at start with:

def has_plugin(self, name):
        ''' Checks if a plugin named name exists '''

        return self.find_plugin(name) is not None

has_plugin call find_plugin without transport parameter so transport is always empty.

from ansible-modules-extras.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.