1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Put umask value in quotation marks (#41409)

The given example causes the pip module to fail. If the umask is given as an octal string without quotation marks, the pip module converts it into an integer (i.e., an invalid umask). 

+label: docsite_pr
This commit is contained in:
Kevin Mooney 2018-07-13 15:35:23 +01:00 committed by Zhikang Zhang
parent 7e97380664
commit 7a0c28cc37

View file

@ -186,7 +186,7 @@ EXAMPLES = '''
# Install (Bottle) while ensuring the umask is 0022 (to ensure other users can use it)
- pip:
name: bottle
umask: 0022
umask: "0022"
become: True
'''