Update pre_upgrade.yml

This commit is contained in:
Brad Beam
2018-02-22 19:32:19 -06:00
committed by Matthew Mosesohn
parent bb469005b2
commit ad89d1c876
2 changed files with 12 additions and 12 deletions

View File

@@ -1,21 +1,22 @@
---
- name: "Pre-upgrade | check if old credential dir exists"
stat:
local_action:
module: stat
path: "{{ inventory_dir }}/../credentials"
register: old_credential_dir
delegate_to: localhost
become: no
- name: "Pre-upgrade | check if new credential dir exists"
stat:
local_action:
module: stat
path: "{{ inventory_dir }}/credentials"
register: new_credential_dir
delegate_to: localhost
become: no
when: old_credential_dir.stat.exists
- name: "Pre-upgrade | move data from old credential dir to new"
command: mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials
local_action: command mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials
args:
creates: "{{ inventory_dir }}/credentials"
become: no
when: old_credential_dir.stat.exists and not new_credential_dir.stat.exists
delegate_to: localhost