diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-09-05 16:51:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-05 16:51:31 -0400 |
commit | 338436926fe1ef6d089a08bfe011f0105665ab3d (patch) | |
tree | a474425a6ed5b98090ab79e1a6cbe608eafd2e83 /roles/lib_openshift/library | |
parent | 91043b66d3c085e6186d7447ebd02befa09149c9 (diff) | |
parent | e53b1fa8893bdb1a026670c7f376006dcfd94d75 (diff) | |
download | openshift-338436926fe1ef6d089a08bfe011f0105665ab3d.tar.gz openshift-338436926fe1ef6d089a08bfe011f0105665ab3d.tar.bz2 openshift-338436926fe1ef6d089a08bfe011f0105665ab3d.tar.xz openshift-338436926fe1ef6d089a08bfe011f0105665ab3d.zip |
Merge pull request #3536 from giuseppe/system-containers-skopeo
Merged by openshift-bot
Diffstat (limited to 'roles/lib_openshift/library')
-rw-r--r-- | roles/lib_openshift/library/oc_atomic_container.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/lib_openshift/library/oc_atomic_container.py b/roles/lib_openshift/library/oc_atomic_container.py index 955c6313e..79bd08f4e 100644 --- a/roles/lib_openshift/library/oc_atomic_container.py +++ b/roles/lib_openshift/library/oc_atomic_container.py @@ -83,7 +83,7 @@ def _install(module, container, image, values_list): if rc != 0: return rc, out, err, False else: - changed = "Extracting" in out + changed = "Extracting" in out or "Copying blob" in out return rc, out, err, changed def _uninstall(module, name): @@ -127,7 +127,7 @@ def do_update(module, container, old_image, image, values_list): if rc != 0: module.fail_json(rc=rc, msg=err) else: - changed = "Extracting" in out + changed = "Extracting" in out or "Copying blob" in out module.exit_json(msg=out, changed=changed) |