dell / dellemc-openmanage-ansible-modules

Dell OpenManage Ansible Modules
GNU General Public License v3.0
336 stars 163 forks source link

Dellemc modules not taken in account after Ansible upgrade to 2.10 #159

Closed ibt23sec5 closed 4 years ago

ibt23sec5 commented 4 years ago

After upgrade of ansible to version 2.10 and reinstall of dellemc modules (with recommended method mentioned in README), these are no more available:

ERROR! couldn't resolve module/action 'idrac_os_deployment'. This often indicates a misspelling, missing collection, or incorrect module path.

And don't appears in the list of available modules:

ansible-doc --list -t module

Versions:

python: 3.7.3
ansible: 2.10.0
dellemc: 2.1.2
omsdk: 445
anupamaloke commented 4 years ago

@ibt23sec5, with ansible 2.10, you will have to use ansible-collections. You can install openmanage collection from ansible galaxy:

ansible-galaxy collection install dellemc.openmanage

Once you have installed the collection, then you will have to modify your playbook to either use the FQCN (fully qualified collection name) for a module or you can use collections keyword. Please see Ansible Documentation on how to use collections within a playbook.

ibt23sec5 commented 4 years ago

@anupamaloke I see, thanks !