pull.fact (762B)
1 { 2 {% if ansible_local is defined and ansible_local.pull is defined and ansible_local.pull is mapping %} 3 "repo": "{% if ansible_local.pull.repo and ansible_local.pull.repo != "https://git.taler.net/ansible-taler-exchange.git" %}{{ ansible_local.pull.repo }}{% else %}https://git.taler.net/ansible-taler-exchange.git{% endif %}", 4 "branch": "{% if ansible_local.pull.branch and ansible_local.pull.branch != "master" %}{{ ansible_local.pull.branch }}{% else %}main{% endif %}", 5 "minute": {% if ansible_local.pull.minute %}{{ ansible_local.pull.minute }}{% else %}{{ 59 | random }}{% endif %} 6 7 {% else %} 8 "repo": "https://git.taler.net/ansible-taler-exchange.git", 9 "branch": "dev/devan-carpenter/development", 10 "minute": "{{ 59 | random }}" 11 12 {% endif %} 13 }