diff options
author | Eric Sauer <etsauer@gmail.com> | 2016-12-02 16:06:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-02 16:06:31 -0500 |
commit | b031691ff0e2510a6e22a81e593bf57cd1181dc8 (patch) | |
tree | a16a5d1fafa2547bf7564f34d6f936d6f35cb293 /roles/subscription-manager/tasks | |
parent | 36da31e0175fd33a4d2b206227a36dabf215134f (diff) | |
parent | 84831e25cefbeb06c9a912650a5263184e78b7e0 (diff) | |
download | openshift-b031691ff0e2510a6e22a81e593bf57cd1181dc8.tar.gz openshift-b031691ff0e2510a6e22a81e593bf57cd1181dc8.tar.bz2 openshift-b031691ff0e2510a6e22a81e593bf57cd1181dc8.tar.xz openshift-b031691ff0e2510a6e22a81e593bf57cd1181dc8.zip |
Merge pull request #5 from oybed/osp9updates
Fixing ansible impl to work with OSP9 and ansible 2.2
Diffstat (limited to 'roles/subscription-manager/tasks')
-rw-r--r-- | roles/subscription-manager/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/subscription-manager/tasks/main.yml b/roles/subscription-manager/tasks/main.yml index 0b3aa351f..2dd14b48e 100644 --- a/roles/subscription-manager/tasks/main.yml +++ b/roles/subscription-manager/tasks/main.yml @@ -114,7 +114,7 @@ - name: "Enable specified repositories" command: "/usr/bin/subscription-manager repos --enable={{ item }}" - with_items: rhsm_repos + with_items: "{{ rhsm_repos }}" when: - not registered - rhsm_repos is defined |