--- - name: Install Debmatic hosts: kitchenpi tasks: - name: Add Key for Debmatic Repository ansible.builtin.apt_key: url: https://www.debmatic.de/debmatic/public.key state: present - name: Add Debmatic Repository ansible.builtin.apt_repository: repo: deb https://www.debmatic.de/debmatic stable main state: present filename: debmatic - name: Install Pre-requesites ansible.builtin.apt: update_cache: true name: - build-essential - bison - flex - libssl-dev - raspberrypi-kernel-headers - pivccu-modules-dkms - name: Reboot ansible.builtin.reboot: - name: Install Debmatic package ansible.builtin.apt: update_cache: false name: debmatic