This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
solutions-tsg-scripts/uninstall/roles/backup_framework_config/tasks/main.yml

22 lines
590 B
YAML
Raw Normal View History

2020-09-25 12:12:25 +08:00
- name: "create backup_dest_path"
file:
path: "{{ backup_dest_path }}"
state: directory
ignore_errors: true
2020-09-25 15:10:14 +08:00
- name: "optMESA_{{ uninstall_version }}_{{ date }}.zip exist?"
shell: "ls {{ backup_dest_path }}/optMESA_{{ uninstall_version }}_{{ date }}.zip"
register: optMESA_directory
ignore_errors: true
2020-09-25 12:12:25 +08:00
- name: "backup /opt/MESA to destination path"
archive:
path: /opt/MESA
dest: "{{ backup_dest_path }}/optMESA_{{ uninstall_version }}_{{ date }}.zip"
format: zip
2020-09-25 15:10:14 +08:00
when:
- optMESA_directory.rc != 0
- backup.framework == 1
2020-09-25 12:12:25 +08:00
ignore_errors: true