adding fedora stuff

This commit is contained in:
2024-07-22 12:10:55 -07:00
parent 82cc422756
commit c58d299d18
138 changed files with 278 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
---
- name: Update apt cache
apt:
update_cache: yes
- name: Install required packages
apt:
name:
- python3-launchpadlib
- software-properties-common
state: present
- name: Add Nicotine+ PPA repository
apt_repository:
repo: 'ppa:nicotine-team/stable'
state: present
- name: Update apt cache again
apt:
update_cache: yes
- name: Install Nicotine+
apt:
name: nicotine
state: present
+1
View File
@@ -0,0 +1 @@
---