Mettre à jour 'linux/Fedora/Physical.sls'

This commit is contained in:
Iwan Clément
2018-04-03 16:15:52 +00:00
parent c6aafb2227
commit 2a22d4bdce

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

@@ -0,0 +1,38 @@
{% if grains['virtual'] == 'physical' %}
Installation des packages sur machine physique Fedora:
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 sur machine physique Fedora:
pkg.purged:
- pkgs:
- qemu-common
- qemu-kvm
- qemu-img
- libvirt-daemon-driver-qemu
- ipxe-roms-qemu
- qemu-guest-agent
Installation de l editeur Atom sur machine physique Fedora:
cmd.script:
- source: salt://files/atom_redhat_install.sh
- user: root
- group: root
- shell: /bin/bash
{% endif %}