--- - name: Install dependencies apt: name: - python3-mastodon - python3-paho-mqtt - name: Clone source 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 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 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 systemd: name: mastodon-spacestate state: started enabled: yes daemon_reload: true