use dnf instead of yum

This commit is contained in:
Miroslav Suchý 2016-02-11 09:03:11 +01:00
parent a1ad68fc2f
commit 5f8403c36e

View file

@ -29,7 +29,7 @@
copy: src="yum/copr.repo" dest="/etc/yum.repos.d/copr.repo" copy: src="yum/copr.repo" dest="/etc/yum.repos.d/copr.repo"
- name: install common copr packages - name: install common copr packages
yum: state=present pkg={{ item }} dnf: state=present pkg={{ item }}
with_items: with_items:
#- "copr-selinux" #- "copr-selinux"
- "system-config-firewall-base" - "system-config-firewall-base"
@ -38,7 +38,7 @@
- packages - packages
- name: install dev helper packages - name: install dev helper packages
yum: state=present pkg={{ item }} dnf: state=present pkg={{ item }}
with_items: with_items:
- "bash-completion" - "bash-completion"
- "screen" - "screen"
@ -47,7 +47,7 @@
- packages - packages
- name: install ethtool - name: install ethtool
yum: state=present pkg=ethtool dnf: state=present pkg=ethtool
tags: tags:
- packages - packages
- name: disable offloading - name: disable offloading