Skip to content
Snippets Groups Projects
Unverified Commit d43cd9a2 authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub
Browse files

Merge pull request #3104 from maxbrunet/hotfix/replace-local_actions

Use delegate_to: localhost instead of local_action
parents f4feb176 33135f2a
No related branches found
No related tags found
No related merge requests found
---
- 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
when:
- old_credential_dir.stat.exists
- 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