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
pull/4420/head
Kevin Mooney 2018-07-13 15:35:23 +01:00 committed by Zhikang Zhang
parent 7e97380664
commit 7a0c28cc37
1 changed files with 1 additions and 1 deletions

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
'''