diff options
author | Kevin Fenzi <kevin@scrye.com> | 2017-05-02 17:46:20 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2017-05-02 17:46:20 +0000 |
commit | 20ae33f83c682871f726546ab031143552fe0d0c (patch) | |
tree | ac89f9beef2d4f06f295640d17934b6efef23581 | |
parent | f7d81f7c54a5f6dfda55cba8ed3ced72ad45fe12 (diff) | |
download | ansible-20ae33f83c682871f726546ab031143552fe0d0c.tar.gz ansible-20ae33f83c682871f726546ab031143552fe0d0c.tar.xz ansible-20ae33f83c682871f726546ab031143552fe0d0c.zip |
this is fedora now so dnf not yum
-rw-r--r-- | playbooks/hosts/hubs-dev.fedorainfroacloud.org.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/hosts/hubs-dev.fedorainfroacloud.org.yml b/playbooks/hosts/hubs-dev.fedorainfroacloud.org.yml index 6297a5d2e..099bae914 100644 --- a/playbooks/hosts/hubs-dev.fedorainfroacloud.org.yml +++ b/playbooks/hosts/hubs-dev.fedorainfroacloud.org.yml @@ -27,7 +27,7 @@ tasks: - include: "{{ tasks_path }}/yumrepos.yml" - - yum: name={{item}} state=present + - dnf: name={{item}} state=present with_items: - git @@ -59,7 +59,7 @@ - src: /srv/git/fedora-hubs/systemd/hubs-webapp.service dest: /usr/lib/systemd/system/hubs-webapp.service remote_src: True - - yum: name={{item}} state=present + - dnf: name={{item}} state=present with_items: - htop - tmux |