Ansible - Install homebrew

Page content

update homebrew

mbpr15:mp3 cychong$ ansible all -m homebrew -a update_homebrew=yes
localhost | SUCCESS => {
    "changed": true,
    "msg": "Homebrew updated successfully."
}
mini2 | SUCCESS => {
    "changed": true,
    "msg": "Homebrew updated successfully."
}

upgrade all packages

mbpr15:mp3 cychong$ ansible all -m homebrew -a update_homebrew=yes -a upgrade_all=yes
localhost | SUCCESS => {
    "changed": true,
    "msg": "Homebrew upgraded."
}
mini2 | SUCCESS => {
    "changed": true,
    "msg": "Homebrew upgraded."
}

install a package

mbpr15:mp3 cychong$ ansible all -m homebrew -a name=neovim -a state=present
mbpr15:~ cychong$ cat install_brew_neovim.yaml 
---
- hosts: all
  tasks:
  - name : install neovim in homebrew
    homebrew: 
      name: neovim
      state: present

mbpr15:~ cychong$ ansible-playbook install_brew_neovim.yaml 

PLAY [all] *****************************************************************************************************************************************************************

TASK [Gathering Facts] *****************************************************************************************************************************************************
ok: [localhost]
ok: [mini2]

TASK [install neovim in homebrew] ******************************************************************************************************************************************
changed: [localhost]
changed: [mini2]

PLAY RECAP *****************************************************************************************************************************************************************
localhost                  : ok=2    changed=1    unreachable=0    failed=0   
mini2                      : ok=2    changed=1    unreachable=0    failed=0   

mbpr15:~ cychong$ which nvim
/usr/local/bin/nvim

삭제는 stateabsent로 변경하면 된다.

mbpr15:~ cychong$ diff -u install_brew_neovim.yaml uninstall_brew_neovim.yaml 
--- install_brew_neovim.yaml	2017-12-30 08:57:36.000000000 +0900
+++ uninstall_brew_neovim.yaml	2017-12-30 08:58:19.000000000 +0900
@@ -1,8 +1,8 @@
 ---
 - hosts: all
   tasks:
-  - name : install neovim in homebrew
+  - name : uninstall neovim in homebrew
     homebrew: 
       name: neovim
-      state: present
+      state: absent
mbpr15:~ cychong$ ansible-playbook uninstall_brew_neovim.yaml 

PLAY [all] *****************************************************************************************************************************************************************

TASK [Gathering Facts] *****************************************************************************************************************************************************
ok: [localhost]
ok: [mini2]

TASK [uninstall neovim in homebrew] ****************************************************************************************************************************************
changed: [localhost]
changed: [mini2]

PLAY RECAP *****************************************************************************************************************************************************************
localhost                  : ok=2    changed=1    unreachable=0    failed=0   
mini2                      : ok=2    changed=1    unreachable=0    failed=0   

mbpr15:~ cychong$ which nvim
mbpr15:~ cychong$ 

state

  • head
  • latest
  • present
  • absent
  • linked
  • unlinked