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`
This commit is contained in:
parent
8b3ce6e418
commit
70b28288a3
1 changed files with 6 additions and 11 deletions
|
@ -1,28 +1,23 @@
|
||||||
---
|
---
|
||||||
- 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
|
||||||
|
|
Loading…
Reference in a new issue