This commit is contained in:
Mike Wilson
2025-06-16 15:34:31 -04:00
parent 6323393963
commit 1867dd7b25
4 changed files with 14 additions and 0 deletions

View File

@@ -1 +1,3 @@
username: "mike"
src_dir: "/usr/local/src"

View File

@@ -2,3 +2,4 @@
connection: local
roles:
- arkenfox
- dwm

1
requirements.yml Normal file
View File

@@ -0,0 +1 @@
- name: make

10
roles/dwm/tasks/main.yml Normal file
View File

@@ -0,0 +1,10 @@
- name: Pull down dwm build from gitea
ansible.builtin.git:
repo: "https://git.mjwilson.org/mike/dwm"
dest: "{{ src_dir }}/dwm"
- name: Build DWM
community.general.make:
chdir: "{{ src_dir }}/dwm"
params:
clean: