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:
parent
7e97380664
commit
7a0c28cc37
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue