Skip to content

Instantly share code, notes, and snippets.

@jamescarr
Created March 30, 2016 11:04
Show Gist options
  • Select an option

  • Save jamescarr/d9716dce09a9f0ee3052d22a99751d30 to your computer and use it in GitHub Desktop.

Select an option

Save jamescarr/d9716dce09a9f0ee3052d22a99751d30 to your computer and use it in GitHub Desktop.
---
- 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