feat: convert playbooks to task + clear playbook

This commit is contained in:
Lenoctambule
2026-03-31 21:04:59 +02:00
parent 3c77aaeda3
commit 0f80772ae3
9 changed files with 149 additions and 129 deletions

View File

@@ -0,0 +1,11 @@
- name: Copy app to server
ansible.builtin.copy:
src: inception/
dest: "{{ dest_dir }}"
preserve: true
force: true
when: not ansible_check_mode
- name: Run the app
ansible.builtin.command: "make -C {{ dest_dir }}"
when: not ansible_check_mode