--- - name: Install statping unarchive: src: https://github.com/statping/statping/releases/download/v0.90.74/statping-linux-amd64.tar.gz dest: /usr/local/bin/ remote_src: yes - name: Create statping user user: create_home: yes home: /var/lib/statping system: yes state: present password: "!" update_password: always name: statping - name: Install statping systemd unit template: src: "systemd/system/statping.service.j2" dest: "/etc/systemd/system/statping.service" mode: 0644 notify: Restart statping - name: Load and activate statping systemd unit systemd: name: statping.service daemon_reload: true enabled: true state: started - name: Indicate role in motd template: src: update-motd.d/05-service.j2 dest: /etc/update-motd.d/05-statping mode: 0755