aboutsummaryrefslogtreecommitdiffstats
path: root/roles/_workstation/dotfiles/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/_workstation/dotfiles/tasks/main.yml')
-rw-r--r--roles/_workstation/dotfiles/tasks/main.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/roles/_workstation/dotfiles/tasks/main.yml b/roles/_workstation/dotfiles/tasks/main.yml
new file mode 100644
index 0000000..50f8d54
--- /dev/null
+++ b/roles/_workstation/dotfiles/tasks/main.yml
@@ -0,0 +1,28 @@
+---
+
+- name: install yadm
+ ansible.builtin.package:
+ name: yadm
+ state: present
+
+- name: clone repository
+ ansible.builtin.shell: yes n | yadm clone "{{ dotfiles_repo_url }}"
+ register: dotfiles_clone_result
+ changed_when:
+ - dotfiles_clone_result.rc != 0
+ - "'Git repo already exists' not in dotfiles_clone_result.stderr"
+ failed_when:
+ - dotfiles_clone_result.rc != 0
+ - "'Git repo already exists' not in dotfiles_clone_result.stderr"
+
+- name: check that yadm bootstrap script exists
+ ansible.builtin.stat:
+ path: "/home/{{ dotfiles_workstation_user }}/.config/yadm/bootstrap"
+ register: dotfiles_bootstrap_result
+
+- name: execute yadm bootstrap
+ ansible.builtin.command: yadm bootstrap
+ when:
+ - dotfiles_bootstrap_result.stat.exists
+ - dotfiles_bootstrap_result.stat.executable
+ changed_when: false
remember that computers suck.