--- - name: Assert usage of systemd as an init system ansible.builtin.assert: that: ansible_service_mgr == 'systemd' msg: "This role only works with systemd" - name: Install package fact dependencies become: true ansible.builtin.package: name: "{{ _pkg_fact_req }}" state: present when: (_pkg_fact_req) vars: _pkg_fact_req: "{% if (ansible_pkg_mgr == 'apt') %}\ {{ ('python-apt' if ansible_python_version is version('3', '<') else 'python3-apt') }} {% else %}\ {% endif %}" - name: Gather package facts ansible.builtin.package_facts: when: "not 'packages' in ansible_facts" - name: Assert that used version supports listen address type ansible.builtin.assert: that: - >- pushgateway_web_listen_address is string or ( pushgateway_version is version('1.5.0', '>=') and pushgateway_web_listen_address | type_debug == "list" ) - name: Naive assertion of proper listen address ansible.builtin.assert: that: - >- [pushgateway_web_listen_address] | flatten | reject('match', '.+:\\d+$') | list | length == 0 - name: Assert that TLS config is correct when: pushgateway_tls_server_config | length > 0 block: - name: Assert that TLS key and cert path are set ansible.builtin.assert: that: - "pushgateway_tls_server_config.cert_file is defined" - "pushgateway_tls_server_config.key_file is defined" - name: Check existence of TLS cert file ansible.builtin.stat: path: "{{ pushgateway_tls_server_config.cert_file }}" register: __pushgateway_cert_file - name: Check existence of TLS key file ansible.builtin.stat: path: "{{ pushgateway_tls_server_config.key_file }}" register: __pushgateway_key_file - name: Assert that TLS key and cert are present ansible.builtin.assert: that: - "__pushgateway_cert_file.stat.exists" - "__pushgateway_key_file.stat.exists" - name: Check if pushgateway is installed ansible.builtin.stat: path: "{{ pushgateway_binary_install_dir }}/pushgateway" register: __pushgateway_is_installed check_mode: false tags: - pushgateway_install - name: Gather currently installed pushgateway version (if any) ansible.builtin.command: "{{ pushgateway_binary_install_dir }}/pushgateway --version" changed_when: false register: __pushgateway_current_version_output check_mode: false when: __pushgateway_is_installed.stat.exists tags: - pushgateway_install - name: Discover latest version ansible.builtin.set_fact: pushgateway_version: "{{ (lookup('url', 'https://api.github.com/repos/{{ _pushgateway_repo }}/releases/latest', headers=_github_api_headers, split_lines=False) | from_json).get('tag_name') | replace('v', '') }}" run_once: true until: pushgateway_version is version('0.0.0', '>=') retries: 10 when: - pushgateway_version == "latest" - pushgateway_binary_local_dir | length == 0 - not pushgateway_skip_install - name: Get pushgateway binary checksum when: - pushgateway_binary_local_dir | length == 0 - not pushgateway_skip_install block: - name: Get checksum list from github ansible.builtin.set_fact: __pushgateway_checksums: "{{ lookup('url', pushgateway_checksums_url, headers=_github_api_headers, wantlist=True) | list }}" run_once: true until: __pushgateway_checksums is search('linux-' + go_arch + '.tar.gz') retries: 10 - name: "Get checksum for {{ go_arch }}" ansible.builtin.set_fact: __pushgateway_checksum: "{{ item.split(' ')[0] }}" with_items: "{{ __pushgateway_checksums }}" when: - "('linux-' + go_arch + '.tar.gz') in item"