Skip to content
Snippets Groups Projects
Commit 70b28288 authored by Maxime Brunet's avatar Maxime Brunet
Browse files

Use delegate_to: localhost instead of local_action

Allow to use `ansible_become: true` (#2969)
And set it to `false` for `localhost` with an `host_var`
parent 8b3ce6e4
No related branches found
No related tags found
No related merge requests found
--- ---
- name: "Pre-upgrade | check if old credential dir exists" - name: "Pre-upgrade | check if old credential dir exists"
local_action: stat:
module: stat
path: "{{ inventory_dir }}/../credentials" path: "{{ inventory_dir }}/../credentials"
vars: delegate_to: localhost
ansible_python_interpreter: "/usr/bin/env python"
register: old_credential_dir register: old_credential_dir
become: no become: no
- name: "Pre-upgrade | check if new credential dir exists" - name: "Pre-upgrade | check if new credential dir exists"
local_action: stat:
module: stat
path: "{{ inventory_dir }}/credentials" path: "{{ inventory_dir }}/credentials"
vars: delegate_to: localhost
ansible_python_interpreter: "/usr/bin/env python"
register: new_credential_dir register: new_credential_dir
become: no become: no
when: old_credential_dir.stat.exists when: old_credential_dir.stat.exists
- name: "Pre-upgrade | move data from old credential dir to new" - name: "Pre-upgrade | move data from old credential dir to new"
local_action: command mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials command: mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials
args: args:
creates: "{{ inventory_dir }}/credentials" creates: "{{ inventory_dir }}/credentials"
vars: delegate_to: localhost
ansible_python_interpreter: "/usr/bin/env python"
become: no become: no
when: old_credential_dir.stat.exists and not new_credential_dir.stat.exists when: old_credential_dir.stat.exists and not new_credential_dir.stat.exists
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment