mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
spelling fixes (non-trivial, changing messages) (#25094)
Multiple spell fixes in single commit. Taking over existing PR as per comment - https://github.com/ansible/ansible/pull/23645#issuecomment-304312275 Original Author: klemens <ka7@github.com> Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
committed by
John R Barker
parent
9d8aa43c67
commit
07be5f2b67
@@ -947,7 +947,7 @@ class Collector(LogicMonitor):
|
||||
installer = self.get_installer_binary()
|
||||
|
||||
if self.info is None:
|
||||
self.module.debug("Retriving collector information")
|
||||
self.module.debug("Retrieving collector information")
|
||||
self.info = self._get()
|
||||
|
||||
if not os.path.exists(self.installdir + "/agent"):
|
||||
|
||||
@@ -98,7 +98,7 @@ EXAMPLES = '''
|
||||
- Example group1
|
||||
- Example group2
|
||||
|
||||
# Limit the Zabbix group creations to one host since Zabbix can return an error when doing concurent updates
|
||||
# Limit the Zabbix group creations to one host since Zabbix can return an error when doing concurrent updates
|
||||
- name: Create host groups
|
||||
local_action:
|
||||
module: zabbix_group
|
||||
@@ -180,7 +180,7 @@ def main():
|
||||
)
|
||||
|
||||
if not HAS_ZABBIX_API:
|
||||
module.fail_json(msg="Missing requried zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
module.fail_json(msg="Missing required zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
|
||||
server_url = module.params['server_url']
|
||||
login_user = module.params['login_user']
|
||||
|
||||
@@ -451,7 +451,7 @@ def main():
|
||||
)
|
||||
|
||||
if not HAS_ZABBIX_API:
|
||||
module.fail_json(msg="Missing requried zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
module.fail_json(msg="Missing required zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
|
||||
server_url = module.params['server_url']
|
||||
login_user = module.params['login_user']
|
||||
|
||||
@@ -199,7 +199,7 @@ def main():
|
||||
)
|
||||
|
||||
if not HAS_ZABBIX_API:
|
||||
module.fail_json(msg="Missing requried zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
module.fail_json(msg="Missing required zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
|
||||
server_url = module.params['server_url']
|
||||
login_user = module.params['login_user']
|
||||
|
||||
@@ -299,7 +299,7 @@ def main():
|
||||
)
|
||||
|
||||
if not HAS_ZABBIX_API:
|
||||
module.fail_json(msg="Missing requried zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
module.fail_json(msg="Missing required zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
|
||||
host_names = module.params['host_names']
|
||||
host_groups = module.params['host_groups']
|
||||
|
||||
@@ -126,7 +126,7 @@ EXAMPLES = '''
|
||||
graph_width: 200
|
||||
graph_height: 100
|
||||
|
||||
# Limit the Zabbix screen creations to one host since Zabbix can return an error when doing concurent updates
|
||||
# Limit the Zabbix screen creations to one host since Zabbix can return an error when doing concurrent updates
|
||||
- name: Create a new screen or update an existing screen's items
|
||||
local_action:
|
||||
module: zabbix_screen
|
||||
@@ -345,7 +345,7 @@ def main():
|
||||
)
|
||||
|
||||
if not HAS_ZABBIX_API:
|
||||
module.fail_json(msg="Missing requried zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
module.fail_json(msg="Missing required zabbix-api module (check docs or install with: pip install zabbix-api)")
|
||||
|
||||
server_url = module.params['server_url']
|
||||
login_user = module.params['login_user']
|
||||
|
||||
Reference in New Issue
Block a user