Mario Lenz
Mario Lenz
Note to myself: https://github.com/ansible-collections/community.vmware/blob/52641b96fd9b74d5a5826b17262753efee4eb640/plugins/modules/vmware_guest.py#L636-L642 and https://github.com/ansible-collections/community.vmware/blob/52641b96fd9b74d5a5826b17262753efee4eb640/plugins/modules/vmware_guest.py#L2206-L2208
@jeffreyaweaver What version of this collection are you running? `ansible-galaxy collection list community.vmware` should tell you.
@yashvanthkumar94 @appdevytlps Could you please test if #1354 fixes your issue?
@yashvanthkumar94 @appdevytlps Did you find the time yet to test if #1354 fixes your issue?
There's PR #186 that will add an (initial) integration test for `vmware_dvs_host`.
It looks like `vmware_vmotion`, `vmware_category`, `vmware_tag_info` and `vmware_tag_manager` do have integration tests meanwhile. @Akasurde Can you please check this? And, if I'm right, tick them off in your list?
@Akasurde > ```shell > #!/bin/bash > > vmware_modules=$(find ./lib/ansible/modules/cloud/vmware/ -name 'vmware_*.py' -exec basename -s .py {} \;) > for module in ${vmware_modules}; do > if ! test -d ./test/integration/targets/${module}; then...
@Akasurde @goneri In vSphere 7.0, the ESXi built-in VNC server has been removed. Users will no longer be able to connect to a virtual machine using a VNC client by...
@Akasurde @goneri FYI I've updated the list: ```shell VMWARE_MODULES=$(find plugins/modules/ -name 'vmware_*.py' -exec basename -s .py {} \;) for MODULE in ${VMWARE_MODULES} do if ! test -d tests/integration/targets/$MODULE then echo...
@theirpuppet @wombelix ansible 2.9 is quite old and the VMware modules are pretty outdated. Do you use them, or did you install this collection via galaxy? If so, what version...