summaryrefslogtreecommitdiff
path: root/web_infrastructure/apache2_module.py
diff options
context:
space:
mode:
Diffstat (limited to 'web_infrastructure/apache2_module.py')
-rw-r--r--web_infrastructure/apache2_module.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/web_infrastructure/apache2_module.py b/web_infrastructure/apache2_module.py
index 9f9df923..2e5060d3 100644
--- a/web_infrastructure/apache2_module.py
+++ b/web_infrastructure/apache2_module.py
@@ -47,10 +47,14 @@ requirements: ["a2enmod","a2dismod"]
EXAMPLES = '''
# enables the Apache2 module "wsgi"
-- apache2_module: state=present name=wsgi
+- apache2_module:
+ state: present
+ name: wsgi
# disables the Apache2 module "wsgi"
-- apache2_module: state=absent name=wsgi
+- apache2_module:
+ state: absent
+ name: wsgi
'''
import re