reformat yaml

This commit is contained in:
Pig Monkey 2021-10-21 18:34:02 -07:00
parent 49c32e26cf
commit 41446b0d28

View file

@ -1,12 +1,18 @@
---
- name: Install rcm
aur: name=rcm user={{ user.name }}
aur:
name: rcm
user: "{{ user.name }}"
when: dotfiles is defined
tags:
- aur
- name: Clone user dotfiles
git: repo={{ dotfiles.url }} dest=/home/{{ user.name }}/{{ dotfiles.destination }} accept_hostkey=yes update=no
git:
repo: "{{ dotfiles.url }}"
dest: /home/{{ user.name }}/{{ dotfiles.destination }}
accept_hostkey: yes
update: no
when: dotfiles is defined
become: yes
become_user: "{{ user.name }}"