summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/authorized_key.py4
-rw-r--r--system/cron.py4
-rw-r--r--system/group.py4
-rw-r--r--system/hostname.py4
-rw-r--r--system/mount.py4
-rw-r--r--system/ping.py4
-rw-r--r--system/seboolean.py4
-rw-r--r--system/selinux.py4
-rw-r--r--system/service.py4
-rw-r--r--system/setup.py4
-rw-r--r--system/sysctl.py4
-rw-r--r--system/systemd.py4
-rw-r--r--system/user.py4
13 files changed, 52 insertions, 0 deletions
diff --git a/system/authorized_key.py b/system/authorized_key.py
index 7ac85eae..c2023e30 100644
--- a/system/authorized_key.py
+++ b/system/authorized_key.py
@@ -21,6 +21,10 @@ You should have received a copy of the GNU General Public License
along with Ansible. If not, see <http://www.gnu.org/licenses/>.
"""
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: authorized_key
diff --git a/system/cron.py b/system/cron.py
index 3157b48b..6e87147f 100644
--- a/system/cron.py
+++ b/system/cron.py
@@ -31,6 +31,10 @@
# This module is based on python-crontab by Martin Owens.
#
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'committer',
+ 'version': '1.0'}
+
DOCUMENTATION = """
---
module: cron
diff --git a/system/group.py b/system/group.py
index a642a3ee..132d71ad 100644
--- a/system/group.py
+++ b/system/group.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: group
diff --git a/system/hostname.py b/system/hostname.py
index 92fd6758..c6432428 100644
--- a/system/hostname.py
+++ b/system/hostname.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'committer',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: hostname
diff --git a/system/mount.py b/system/mount.py
index 9fe7fe32..b8fad774 100644
--- a/system/mount.py
+++ b/system/mount.py
@@ -30,6 +30,10 @@ from ansible.module_utils.six import iteritems
import os
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: mount
diff --git a/system/ping.py b/system/ping.py
index a701b009..bee23a95 100644
--- a/system/ping.py
+++ b/system/ping.py
@@ -20,6 +20,10 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: ping
diff --git a/system/seboolean.py b/system/seboolean.py
index 6d3b312d..9246d912 100644
--- a/system/seboolean.py
+++ b/system/seboolean.py
@@ -17,6 +17,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: seboolean
diff --git a/system/selinux.py b/system/selinux.py
index 2afd4756..634ef4ef 100644
--- a/system/selinux.py
+++ b/system/selinux.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: selinux
diff --git a/system/service.py b/system/service.py
index 4b22f265..b1cb289b 100644
--- a/system/service.py
+++ b/system/service.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: service
diff --git a/system/setup.py b/system/setup.py
index ac06b478..81bbf43d 100644
--- a/system/setup.py
+++ b/system/setup.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: setup
diff --git a/system/sysctl.py b/system/sysctl.py
index 9a6787e2..43312b09 100644
--- a/system/sysctl.py
+++ b/system/sysctl.py
@@ -20,6 +20,10 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: sysctl
diff --git a/system/systemd.py b/system/systemd.py
index dcc493b8..0b6c0535 100644
--- a/system/systemd.py
+++ b/system/systemd.py
@@ -17,6 +17,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
module: systemd
author:
diff --git a/system/user.py b/system/user.py
index dd079b64..ed550358 100644
--- a/system/user.py
+++ b/system/user.py
@@ -18,6 +18,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: user