Skip to content

Instantly share code, notes, and snippets.

View roib20's full-sized avatar
๐Ÿ†”
develeaper

roib20

๐Ÿ†”
develeaper
View GitHub Profile
@roib20
roib20 / ppa-repo-playbook.yaml
Created May 25, 2023 14:58
Adding Mozilla PPA repository using the new `deb822_repository` Ansible module
---
- hosts: localhost
connection: local
gather_facts: true
tasks:
- name: Add PPA repositories
when: ansible_distribution == 'Ubuntu'
become: true
block:
@roib20
roib20 / apt-repo-playbook.yaml
Last active April 16, 2025 07:01
Example usages of the new `deb822_repository` Ansible module
---
- hosts: localhost
connection: local
gather_facts: true
tasks:
- name: Add APT repositories
when: ansible_os_family == 'Debian'
become: true
block: