Files
cloud-1/tasks/setup-and-start-app.yml
2026-03-31 21:04:59 +02:00

11 lines
269 B
YAML

- 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