Skip to content

aguerrero232/ansible-zero-to-pro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

69 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Ansible Zero To Pro โœจ


โ›๏ธ "A stone is broken by the last stroke of the hammer. This does not mean that the first stroke was useless. Success is the result of continuous effort." โ›๏ธ


Table of Contents ๐Ÿ“œ


Ansible Definitions

Idempotency - An operation is idempotent if the result of performing it once is exactly the same as the result of performing it repeatedly without any intervening actions.


CLI

  • imperative style of execution

    ansible <host-pattern> -m <module> -a <command>
  • ansible docs

    ansible-doc -l
  • reboot hosts (command)

    ansible <host-pattern> -a '/sbin/reboot'
  • ping hosts (module)

    ansible <host-pattern> -m ping