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:
Maxime Brunet 2018-08-14 10:08:43 -04:00
parent 8b3ce6e418
commit 70b28288a3

View file

@ -1,28 +1,23 @@
---
- name: "Pre-upgrade | check if old credential dir exists"
local_action:
module: stat
stat:
path: "{{ inventory_dir }}/../credentials"
vars:
ansible_python_interpreter: "/usr/bin/env python"
delegate_to: localhost
register: old_credential_dir
become: no
- name: "Pre-upgrade | check if new credential dir exists"
local_action:
module: stat
stat:
path: "{{ inventory_dir }}/credentials"
vars:
ansible_python_interpreter: "/usr/bin/env python"
delegate_to: localhost
register: new_credential_dir
become: no
when: old_credential_dir.stat.exists
- 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:
creates: "{{ inventory_dir }}/credentials"
vars:
ansible_python_interpreter: "/usr/bin/env python"
delegate_to: localhost
become: no
when: old_credential_dir.stat.exists and not new_credential_dir.stat.exists