--- - name: Install Webmin and ZeroTier on Debian-based systems hosts: all become: true tasks: - name: Ensure GPG is installed apt: name: gnupg state: present - name: Add Webmin repository key apt_key: url: http://www.webmin.com/jcameron-key.asc state: present - name: Add Webmin repository apt_repository: repo: deb https://download.webmin.com/download/repository sarge contrib state: present - name: Update apt cache apt: update_cache: yes - name: Install Webmin apt: name: webmin state: present - name: Install Webmin-bind8 apt: name: webmin state: present