mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-03-26 21:33:25 +00:00
Make sure that escape sequence in YAML is not interpreted by Python. (#507)
This commit is contained in:
@@ -9,7 +9,7 @@ from __future__ import absolute_import, division, print_function
|
|||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: crypto_info
|
module: crypto_info
|
||||||
author: "Felix Fontein (@felixfontein)"
|
author: "Felix Fontein (@felixfontein)"
|
||||||
@@ -24,7 +24,7 @@ notes:
|
|||||||
options: {}
|
options: {}
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = r'''
|
||||||
- name: Retrieve information
|
- name: Retrieve information
|
||||||
community.crypto.crypto_info:
|
community.crypto.crypto_info:
|
||||||
account_key_src: /etc/pki/cert/private/account.key
|
account_key_src: /etc/pki/cert/private/account.key
|
||||||
@@ -35,7 +35,7 @@ EXAMPLES = '''
|
|||||||
var: crypto_information
|
var: crypto_information
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = r'''
|
||||||
python_cryptography_installed:
|
python_cryptography_installed:
|
||||||
description: Whether the L(Python cryptography library, https://cryptography.io/) is installed.
|
description: Whether the L(Python cryptography library, https://cryptography.io/) is installed.
|
||||||
returned: always
|
returned: always
|
||||||
|
|||||||
Reference in New Issue
Block a user