diff options
author | Yifei Xue <xueyifei@huawei.com> | 2018-03-20 08:48:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-20 08:48:52 +0000 |
commit | 5663222a6ca1de03a28a4d1f85f827b81b91439f (patch) | |
tree | 27d317136f091e2d47de4f5382cff33543972223 /deploy/adapters/ansible/roles/post-openstack/tasks | |
parent | d070198fbe5756e1f5a969c05a940a3a01b74a21 (diff) | |
parent | 9516282c82d34cad3bfc391d5204922ee4620208 (diff) |
Merge "Fix workaround of image upload through horizon"
Diffstat (limited to 'deploy/adapters/ansible/roles/post-openstack/tasks')
-rw-r--r-- | deploy/adapters/ansible/roles/post-openstack/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy/adapters/ansible/roles/post-openstack/tasks/main.yml b/deploy/adapters/ansible/roles/post-openstack/tasks/main.yml index d5582391..0bd9aeff 100644 --- a/deploy/adapters/ansible/roles/post-openstack/tasks/main.yml +++ b/deploy/adapters/ansible/roles/post-openstack/tasks/main.yml @@ -77,7 +77,7 @@ regexp: "^HORIZON_IMAGES_UPLOAD_MODE" line: "HORIZON_IMAGES_UPLOAD_MODE = 'legacy'" when: - - inventory_hostname in groups['dashboard_containers'] + - inventory_hostname in groups['horizon'] # yamllint enable rule:line-length - name: restart apache2 @@ -85,4 +85,4 @@ name: apache2 state: restarted when: - - inventory_hostname in groups['dashboard_containers'] + - inventory_hostname in groups['horizon'] |