From dac5af63cb263ab08a2643da244c5c685cc5c6b9 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 17 Aug 2016 15:49:40 -0400 Subject: [PATCH] corrected typo, expanded server types --- docsite/rst/developing_modules.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/developing_modules.rst b/docsite/rst/developing_modules.rst index 0908466954..35d1606e7f 100644 --- a/docsite/rst/developing_modules.rst +++ b/docsite/rst/developing_modules.rst @@ -360,7 +360,7 @@ This prevents data corruption and ensures keeping the correct context for the fi Avoid createng a module that does the work of other modules, this is what Plays and Roles are for, modules should be the building blocks. This leads to code duplication and divergence, making things less uniform, unpredictable and harder to maintain. -Avoid creating 'caches', Ansible is designed w/o a central server or authority, you cannot guarantee it will not run with different permissions, options or locations. If you need a central authority, have it on top of Ansible (bastion servier, config server, tower, etc), do not try to build it into modules. +Avoid creating 'caches', Ansible is designed w/o a central server or authority, you cannot guarantee it will not run with different permissions, options or locations. If you need a central authority, have it on top of Ansible (bastion/cm/ci server, tower, etc), do not try to build it into modules. Always use the hacking/test-module script when developing modules and it will warn you about these kind of things.