diff options
author | Kevin Fenzi <kevin@scrye.com> | 2017-04-17 21:35:45 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2017-04-17 21:35:50 +0000 |
commit | 0edace9444cb4c5ea514342729f282de37d26c76 (patch) | |
tree | 8abe60bd97c74d92db11be2313b06f811417f7f6 | |
parent | 2847404afccad185ef261438f9d4728afed2abfb (diff) | |
download | ansible-0edace9444cb4c5ea514342729f282de37d26c76.tar.gz ansible-0edace9444cb4c5ea514342729f282de37d26c76.tar.xz ansible-0edace9444cb4c5ea514342729f282de37d26c76.zip |
fix conditionals
-rw-r--r-- | roles/koji_builder/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/koji_builder/tasks/main.yml b/roles/koji_builder/tasks/main.yml index 04d929355..56c163ce4 100644 --- a/roles/koji_builder/tasks/main.yml +++ b/roles/koji_builder/tasks/main.yml @@ -165,7 +165,7 @@ copy: src={{ private }}/files/koji/config.yaml dest=/root/.psphere/config.yaml tags: - koji_builder - when: ansible_architecture == 's390x' + when: ansible_architecture != 's390x' # done oz/imagefactory - name: copy over /etc/security/limits.conf @@ -179,7 +179,7 @@ when: not inventory_hostname.startswith('buildppc') tags: - koji_builder - when: ansible_architecture == 's390x' + when: ansible_architecture != 's390x' # install libvirtd.conf # @@ -192,7 +192,7 @@ - restart libvirtd tags: - koji_builder - when: ansible_architecture == 's390x' + when: ansible_architecture != 's390x' # # On primary we want to make a /mnt/koji link to /mnt/fedora_koji/koji |