role-podman/tasks/install_conmon.yml

19 lines
446 B
YAML
Raw Normal View History

2023-09-08 20:41:09 +00:00
- name: Clone Conmon github repository
git:
repo: "{{ podman_conmon_repopath }}"
dest: "{{ podman_conmon_buildpath }}"
clone: yes
update: yes
version: "{{ podman_conmon_version }}"
- name: Build 'all' target with extra arguments
make:
chdir: "{{ podman_conmon_buildpath }}"
target: "all"
- name: Build 'podman' target with extra arguments
make:
chdir: "{{ podman_conmon_buildpath }}"
target: "podman"