summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/doc_fragments
diff options
context:
space:
mode:
authorAnsible Core Team <info@ansible.com>2020-03-09 09:40:32 +0000
committerMatt Martz <matt@sivel.net>2020-03-23 11:14:21 -0500
commit09d8d4698369890fc6cdb6078170713266c381de (patch)
tree6e20812e4b95eeb6283e341fba227f1b94c9b3c2 /lib/ansible/plugins/doc_fragments
parent48d4e9370e8c7abb5df61353d64ff4589d2566d1 (diff)
downloadansible-09d8d4698369890fc6cdb6078170713266c381de.tar.gz
Migrated to fortinet.fortios
Diffstat (limited to 'lib/ansible/plugins/doc_fragments')
-rw-r--r--lib/ansible/plugins/doc_fragments/fortios.py61
1 files changed, 0 insertions, 61 deletions
diff --git a/lib/ansible/plugins/doc_fragments/fortios.py b/lib/ansible/plugins/doc_fragments/fortios.py
deleted file mode 100644
index 01c71546f5..0000000000
--- a/lib/ansible/plugins/doc_fragments/fortios.py
+++ /dev/null
@@ -1,61 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Copyright: (c) 2017, Benjamin Jolivot <bjolivot@gmail.com>
-# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
-
-
-class ModuleDocFragment(object):
-
- # Standard files documentation fragment
- DOCUMENTATION = r'''
-options:
- file_mode:
- description:
- - Don't connect to any device, only use I(config_file) as input and Output.
- type: bool
- default: no
- version_added: "2.4"
- config_file:
- description:
- - Path to configuration file. Required when I(file_mode) is True.
- type: path
- version_added: "2.4"
- host:
- description:
- - Specifies the DNS hostname or IP address for connecting to the remote fortios device. Required when I(file_mode) is False.
- type: str
- username:
- description:
- - Configures the username used to authenticate to the remote device. Required when I(file_mode) is True.
- type: str
- password:
- description:
- - Specifies the password used to authenticate to the remote device. Required when I(file_mode) is True.
- type: str
- timeout:
- description:
- - Timeout in seconds for connecting to the remote device.
- type: int
- default: 60
- vdom:
- description:
- - Specifies on which vdom to apply configuration
- type: str
- backup:
- description:
- - This argument will cause the module to create a backup of
- the current C(running-config) from the remote device before any
- changes are made. The backup file is written to the i(backup)
- folder.
- type: bool
- default: no
- backup_path:
- description:
- - Specifies where to store backup files. Required if I(backup=yes).
- type: path
- backup_filename:
- description:
- - Specifies the backup filename. If omitted filename will be
- formatted like HOST_config.YYYY-MM-DD@HH:MM:SS
- type: str
-'''