Automating Firefox with Ansible

During my work on a Catppuccin-ified image, I wrote an Ansible playbook to automate the installation and configuration of Firefox. The playbook is used to build an image from a known state, so it’s not 100% idempotent. But it was still just enough research that it warranted sharing. Installation Installing is easy. It’s so trivial, I shouldn’t even show it: - name: Ensure firefox is installed become: yes yum: name: firefox state: present Best....

July 31, 2022 · 6 min