summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-rw-r--r--files/acl.py4
-rw-r--r--files/assemble.py4
-rw-r--r--files/copy.py4
-rw-r--r--files/fetch.py4
-rw-r--r--files/file.py4
-rw-r--r--files/find.py4
-rw-r--r--files/ini_file.py4
-rw-r--r--files/lineinfile.py4
-rw-r--r--files/replace.py4
-rw-r--r--files/stat.py4
-rw-r--r--files/synchronize.py4
-rw-r--r--files/template.py4
-rw-r--r--files/unarchive.py4
-rw-r--r--files/xattr.py4
14 files changed, 56 insertions, 0 deletions
diff --git a/files/acl.py b/files/acl.py
index fda245d4..ebd46d53 100644
--- a/files/acl.py
+++ b/files/acl.py
@@ -15,6 +15,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: acl
diff --git a/files/assemble.py b/files/assemble.py
index d1d1bb34..41e7530e 100644
--- a/files/assemble.py
+++ b/files/assemble.py
@@ -19,6 +19,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: assemble
diff --git a/files/copy.py b/files/copy.py
index 000b8ff2..f9bbd1ba 100644
--- a/files/copy.py
+++ b/files/copy.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: copy
diff --git a/files/fetch.py b/files/fetch.py
index 9b3f0782..f069a23a 100644
--- a/files/fetch.py
+++ b/files/fetch.py
@@ -15,6 +15,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: fetch
diff --git a/files/file.py b/files/file.py
index f0947cfb..ef98f036 100644
--- a/files/file.py
+++ b/files/file.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: file
diff --git a/files/find.py b/files/find.py
index f6bfbebe..e2988aa3 100644
--- a/files/find.py
+++ b/files/find.py
@@ -26,6 +26,10 @@ import fnmatch
import time
import re
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'core',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: find
diff --git a/files/ini_file.py b/files/ini_file.py
index 69f092a1..f9f08ac5 100644
--- a/files/ini_file.py
+++ b/files/ini_file.py
@@ -20,6 +20,10 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: ini_file
diff --git a/files/lineinfile.py b/files/lineinfile.py
index 4b6088c2..ba7f4a3c 100644
--- a/files/lineinfile.py
+++ b/files/lineinfile.py
@@ -19,6 +19,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: lineinfile
diff --git a/files/replace.py b/files/replace.py
index d4e3ab9f..85d6d91e 100644
--- a/files/replace.py
+++ b/files/replace.py
@@ -22,6 +22,10 @@ import re
import os
import tempfile
+ANSIBLE_METADATA = {'status': ['stableinterface'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
DOCUMENTATION = """
---
module: replace
diff --git a/files/stat.py b/files/stat.py
index 363e94ad..8cccae1d 100644
--- a/files/stat.py
+++ b/files/stat.py
@@ -14,6 +14,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: stat
diff --git a/files/synchronize.py b/files/synchronize.py
index eb813b72..4a7933ad 100644
--- a/files/synchronize.py
+++ b/files/synchronize.py
@@ -16,6 +16,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: synchronize
diff --git a/files/template.py b/files/template.py
index c7ff655c..c603ec8f 100644
--- a/files/template.py
+++ b/files/template.py
@@ -15,6 +15,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: template
diff --git a/files/unarchive.py b/files/unarchive.py
index 3a69cc33..c919d1f0 100644
--- a/files/unarchive.py
+++ b/files/unarchive.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: unarchive
diff --git a/files/xattr.py b/files/xattr.py
index 02af9f97..0ae74efb 100644
--- a/files/xattr.py
+++ b/files/xattr.py
@@ -14,6 +14,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': 'committer',
+ 'version': '1.0'}
+
DOCUMENTATION = '''
---
module: xattr