changed base and packages

This commit is contained in:
opal
2022-09-05 18:48:47 -04:00
parent a98d7232cf
commit e97c773851
2 changed files with 13 additions and 9 deletions

View File

@@ -10,21 +10,24 @@ remove_directories:
- Desktop - Desktop
create_directories: create_directories:
- projects
- bin - bin
- documents - documents
- music - music
- downloads - downloads
- scripts
- pictures - pictures
- sync - code
- code/scripts
- code/projects
- code/ansible
init_users: init_users:
opal: opal:
name: opal name: opal
uid: 2000 uid: 2000
group: opal group: opal
groups: wheel groups:
- wheel
- docker
state: present state: present
shell: /usr/bin/zsh shell: /usr/bin/zsh
create_home: true create_home: true

View File

@@ -53,11 +53,12 @@
disable_gpg_check: True disable_gpg_check: True
- name: install rpmfusion for ffmpeg - name: install rpmfusion for ffmpeg
dnf: shell: 'dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm'
name: 'https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ fedora_ver }}.noarch.rpm'
state: present
- name: install ffmpeg-libs - name: install ffmpeg/libs
dnf: dnf:
name: ffmpeg-libs name: "{{ item }}"
state: present state: present
loop:
- ffmpeg
- ffmpeg-libs