Mettre à jour 'linux/PhysicalFedora.sls'

This commit is contained in:
Iwan Clément
2018-02-21 18:53:24 +00:00
parent c9d61ddd05
commit aed498539b

45
linux/PhysicalFedora.sls Normal file
View File

@@ -0,0 +1,45 @@
{% if grains['os'] == 'Fedora' %}
Installation des paquets pour toutes les Fedora:
pkg.installed:
- pkgs:
- keepassx
- fuse-sshfs
- libreoffice-langpack-fr
- unzip
- zip
- unrar
- p7zip
- p7zip-plugins
- p7zip-gui
{% if grains['virtual'] == 'physical' %}
Installation des packages qui vont bien:
pkg.installed:
- pkgs:
- https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
- https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
- gnucash
- blivet-gui
- xsane
- fuse-encfs
- calibre
- vlc
- xpra
- xpra-html5
- x264
- x264-libs
- dnf-automatic
- nextcloud-client
- remmina
Suppression des packages inutiles:
pkg.purged:
- pkgs:
- qemu-common
- qemu-kvm
- qemu-img
- libvirt-daemon-driver-qemu
- ipxe-roms-qemu
- qemu-guest-agent
{% endif %}
{% endif %}