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_prpull/4420/head
parent
7e97380664
commit
7a0c28cc37
|
@ -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
|
||||
'''
|
||||
|
||||
|
|
Loading…
Reference in New Issue