diff options
author | Eric Mountain <eric.mountain@amadeus.com> | 2015-12-14 10:35:35 +0100 |
---|---|---|
committer | Eric Mountain <eric.mountain@amadeus.com> | 2015-12-14 10:44:32 +0100 |
commit | 0b61ab55596415bd1b463f52a4110f46897d2352 (patch) | |
tree | 0160e9e00e6baa1f8f558788fc71eb18765aaf36 /roles/openshift_node/tasks | |
parent | 40ce28e760021571504efe3b89a4034b98c64f4b (diff) | |
download | openshift-0b61ab55596415bd1b463f52a4110f46897d2352.tar.gz openshift-0b61ab55596415bd1b463f52a4110f46897d2352.tar.bz2 openshift-0b61ab55596415bd1b463f52a4110f46897d2352.tar.xz openshift-0b61ab55596415bd1b463f52a4110f46897d2352.zip |
Fixes typo when setting facts to record whether master/node has been restarted already, to decide whether notify handler should do so or not.
Currently, this causes random SDN network setup failures as openshift-node gets restarted while the setup script is running, and the subsequent start fails to configure the SDN because it thinks it's already done.
Diffstat (limited to 'roles/openshift_node/tasks')
-rw-r--r-- | roles/openshift_node/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_node/tasks/main.yml b/roles/openshift_node/tasks/main.yml index eef7bec9a..f8711d15a 100644 --- a/roles/openshift_node/tasks/main.yml +++ b/roles/openshift_node/tasks/main.yml @@ -131,4 +131,4 @@ register: start_result - set_fact: - node_service_status_changed = start_result | changed + node_service_status_changed: start_result | changed |