Created
March 30, 2016 11:04
-
-
Save jamescarr/d9716dce09a9f0ee3052d22a99751d30 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - name: Install ZSH | |
| homebrew: | |
| name: zsh | |
| state: latest | |
| - name: Change current user shell | |
| user: | |
| name: "{{ ansible_ssh_user }}" | |
| shell: /bin/zsh | |
| become: yes | |
| - name: Fetch oh-my-zsh | |
| get_url: | |
| url: https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | |
| dest: /tmp/install-oh-my-zsh.sh | |
| mode: 0755 | |
| - name: Install oh-my-zsh | |
| command: zsh /tmp/install-oh-my-zsh.sh | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment