diff options
| author | Scott Dodson <sdodson@redhat.com> | 2017-06-29 13:42:08 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-29 13:42:08 -0400 | 
| commit | 2c03eec969aa3f897d8b963628cc7bf7c1caa601 (patch) | |
| tree | 3762f3685a4255e2202f7bfb1a5d5eb25787e817 /roles | |
| parent | d108da5c4447950f07f9f0ead181383d8c6b4b02 (diff) | |
| parent | e0be69fc9e033f392d4559941be5d605511d9f45 (diff) | |
| download | openshift-2c03eec969aa3f897d8b963628cc7bf7c1caa601.tar.gz openshift-2c03eec969aa3f897d8b963628cc7bf7c1caa601.tar.bz2 openshift-2c03eec969aa3f897d8b963628cc7bf7c1caa601.tar.xz openshift-2c03eec969aa3f897d8b963628cc7bf7c1caa601.zip | |
Merge pull request #4643 from ewolinetz/metrics_local_become
Adding become: false to local_action tasks
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/openshift_metrics/tasks/generate_hawkular_certificates.yaml | 3 | ||||
| -rw-r--r-- | roles/openshift_metrics/tasks/install_support.yaml | 2 | ||||
| -rw-r--r-- | roles/openshift_metrics/tasks/main.yaml | 2 | 
3 files changed, 7 insertions, 0 deletions
| diff --git a/roles/openshift_metrics/tasks/generate_hawkular_certificates.yaml b/roles/openshift_metrics/tasks/generate_hawkular_certificates.yaml index 7b81b3c10..8d7ee00ed 100644 --- a/roles/openshift_metrics/tasks/generate_hawkular_certificates.yaml +++ b/roles/openshift_metrics/tasks/generate_hawkular_certificates.yaml @@ -17,14 +17,17 @@    local_action: copy dest="{{ local_tmp.stdout }}/{{ item }}.pwd" content="{{ 15 | oo_random_word }}"    with_items:    - hawkular-metrics +  become: false  - local_action: slurp src="{{ local_tmp.stdout }}/hawkular-metrics.pwd"    register: hawkular_metrics_pwd    no_log: true +  become: false  - name: generate htpasswd file for hawkular metrics    local_action: htpasswd path="{{ local_tmp.stdout }}/hawkular-metrics.htpasswd" name=hawkular password="{{ hawkular_metrics_pwd.content | b64decode }}"    no_log: true +  become: false  - name: copy local generated passwords to target    copy: diff --git a/roles/openshift_metrics/tasks/install_support.yaml b/roles/openshift_metrics/tasks/install_support.yaml index 5cefb273d..584e3be05 100644 --- a/roles/openshift_metrics/tasks/install_support.yaml +++ b/roles/openshift_metrics/tasks/install_support.yaml @@ -4,6 +4,7 @@    register: htpasswd_check    failed_when: no    changed_when: no +  become: false  - fail: msg="'htpasswd' is unavailable. Please install httpd-tools on the control node"    when: htpasswd_check.rc  == 1 @@ -13,6 +14,7 @@    register: keytool_check    failed_when: no    changed_when: no +  become: false  - fail: msg="'keytool' is unavailable. Please install java-1.8.0-openjdk-headless on the control node"    when: keytool_check.rc  == 1 diff --git a/roles/openshift_metrics/tasks/main.yaml b/roles/openshift_metrics/tasks/main.yaml index 0b5f23c24..eaabdd20f 100644 --- a/roles/openshift_metrics/tasks/main.yaml +++ b/roles/openshift_metrics/tasks/main.yaml @@ -1,6 +1,7 @@  ---  - local_action: shell python -c 'import passlib' 2>/dev/null || echo not installed    register: passlib_result +  become: false  - name: Check that python-passlib is available on the control host    assert: @@ -52,3 +53,4 @@    tags: metrics_cleanup    changed_when: False    check_mode: no +  become: false | 
