Files
states/linux/PhysicalFedora.sls
2018-02-21 20:57:07 +00:00

38 lines
1019 B
Plaintext

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