From e70f5cc132959fa8ca26c190449b84f37ee91501 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A9ri=20Le=20Bouder?= Date: Mon, 11 May 2020 16:27:20 -0400 Subject: [PATCH] vmware: example should use FQCN (#69351) For instance, you should use `community.vmware.vmware_guest` instead of just `vmware_guest`. This way, the examples don't depend on the `collections` directive of the playbook. Co-authored-by: Sandra McCann --- .../rst/dev_guide/platforms/vmware_guidelines.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/docsite/rst/dev_guide/platforms/vmware_guidelines.rst b/docs/docsite/rst/dev_guide/platforms/vmware_guidelines.rst index 10348ec806c..db4fa6a001f 100644 --- a/docs/docsite/rst/dev_guide/platforms/vmware_guidelines.rst +++ b/docs/docsite/rst/dev_guide/platforms/vmware_guidelines.rst @@ -178,6 +178,15 @@ Depending upon the functionality provided by ESXi or vCenter, some modules can s if self.host is None: self.module.fail_json(msg="Failed to find host system.") +Example should use the fully qualified collection name (FQCN) +------------------------------------------------------------- + +Use FQCN for examples within module documentation For instance, you should use ``community.vmware.vmware_guest`` instead of just +``vmware_guest``. + +This way, the examples don't depend on the ``collections`` directive of the +playbook. + Functional tests ----------------