--- - name: Install dependencies ansible.builtin.apt: name: - python3-mastodon - python3-paho-mqtt - name: Clone source ansible.builtin.git: repo: https://github.com/bitlair/mastodon-spacestate.git version: main dest: /var/lib/mastodon-spacestate accept_hostkey: yes notify: restart mastodon-spacestate - name: Install config ansible.builtin.template: src: mastodon-spacestate-config.py dest: /var/lib/mastodon-spacestate/config.py owner: root group: root mode: 0655 notify: restart mastodon-spacestate - name: Install service file ansible.builtin.template: src: mastodon-spacestate.service dest: /etc/systemd/system/mastodon-spacestate.service owner: root group: root mode: 0644 notify: restart mastodon-spacestate - name: Start mastodon-spacestate ansible.builtin.systemd: name: mastodon-spacestate state: started enabled: yes daemon_reload: true