2023-07-14 21:16:51 +05:30
|
|
|
# IMPORTANT: Inventory file for pubnix is stored in semaphore, not inventory.yml
|
|
|
|
---
|
|
|
|
- name: Caddy Builds on Pubnix (Weekly Cron)
|
|
|
|
hosts: pubnix
|
|
|
|
tasks:
|
|
|
|
- name: Do the thing
|
2023-07-14 21:43:47 +05:30
|
|
|
ansible.builtin.command: xcaddy build --with github.com/aksdb/caddy-cgi/v2@master --output /usr/local/bin/caddy
|
2023-07-14 21:16:51 +05:30
|
|
|
register: out
|
|
|
|
changed_when: out.rc != 0
|
|
|
|
- name: Print output of thing
|
|
|
|
ansible.builtin.debug:
|
|
|
|
var: out.stderr_lines
|