Components of Ansible?
----------------------
Programs:
1. ansible
2. ansible-doc
3. ansible-playbook
4. ansible-pull
Modules:
It perform configuration and system management. Example: Modules copy, service, file, yum, user, group, command, shell, ping etc.
Types of Modules:
1. Core Modules: Core modules are the modules which comes with ansible package installation.Latest ansible 2.3.* has 1000+ core modules.
2. Custom Modules.
Ansible admin can write their own modules and can add them in Ansible library. Modules are written in Python,
but they can be written in any interpreted programming language (Ruby, Shell, Python).
----------------------
Programs:
1. ansible
2. ansible-doc
3. ansible-playbook
4. ansible-pull
Modules:
It perform configuration and system management. Example: Modules copy, service, file, yum, user, group, command, shell, ping etc.
Types of Modules:
1. Core Modules: Core modules are the modules which comes with ansible package installation.Latest ansible 2.3.* has 1000+ core modules.
2. Custom Modules.
Ansible admin can write their own modules and can add them in Ansible library. Modules are written in Python,
but they can be written in any interpreted programming language (Ruby, Shell, Python).