Ansible Block to Add Miniflux Deb822 Repository

Ansible Block to Add Miniflux Deb822 Repository

November 19, 2025

To install miniflux on Debian with Ansible, add the following task block

  tasks:
    - name: Add a deb822 repository for miniflux
      ansible.builtin.deb822_repository:
        name: miniflux
        enabled: yes
        types:
          - deb
        uris: 
          - https://repo.fury.io/miniflux/
        suites:
          - /
        state: present
        trusted: true
        architectures: amd64

    - name: Update apt cache and install packages
      ansible.builtin.apt:
        name:
          - miniflux
        state: present
        update_cache: yes
Last updated on