This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-machine-setup/roles/dotfiles/tasks/main.yaml
2020-05-31 17:27:58 +02:00

17 lines
287 B
YAML

---
- name: install required packages
package:
name:
- git
state: latest
- name: clone dotfiles
become_user: "{{ account.name }}"
git:
repo: git@github.com:mandlm/dotfiles.git
dest: "{{ dotfiles }}"
accept_hostkey: yes
update: no