--- - hosts: localhost connection: local become: true tasks: - name: Basic dev install package: name: - git - zsh - name: Set zsh main as shell become: true shell: chsh -s /bin/zsh giamm - name: Install oh my zsh become_user: gianm shell: sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" - name: Setup shell env copy: src: files/zshrc dest: /home/gianm/.zshrc owner: gianm group: gianm