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/remove_marsio_files/tasks/main.yml
2020-10-24 12:08:31 +06:00

22 lines
467 B
YAML

- name: "remove marsio files"
file:
path: /opt/mrzcpd
state: absent
when: remove.marsio == 1
ignore_errors: true
- name: "remove mrzcpd.service"
file:
path: /usr/lib/systemd/system/mrzcpd.service
state: absent
when: remove.marsio == 1
ignore_errors: true
- name: "remove mrtunnat.service"
file:
path: /usr/lib/systemd/system/mrtunnat.service
state: absent
when: remove.marsio == 1
ignore_errors: true