Recopie initiale

This commit is contained in:
Iwan Clement
2018-05-21 13:03:35 +02:00
commit 3f39bfa01d
319 changed files with 1543 additions and 0 deletions

40
linux/Fedora/Physical.sls Normal file
View File

@@ -0,0 +1,40 @@
{% if grains['virtual'] == 'physical' %}
{% if grains['os'] == 'Fedora' %}
Installation des packages sur machine physique Fedora:
pkg.installed:
- pkgs:
- gnucash
- blivet-gui
- xsane
- fuse-encfs
- calibre
- vlc
- xpra
- xpra-html5
- x264
- x264-libs
- x265
- x265-libs
- dnf-automatic
- nextcloud-client
- jitsi
- remmina
- gcc
- make
- perl
# - gstreamer1-plugin-openh264
- gstreamer1-libav
- gstreamer1-plugins-ugly
- gstreamer1-plugins-good
Suppression des packages inutiles sur machine physique Fedora:
pkg.purged:
- pkgs:
- qemu-common
- qemu-kvm
- qemu-img
- libvirt-daemon-driver-qemu
- ipxe-roms-qemu
- qemu-guest-agent
{% endif %}
{% endif %}