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

Merge pull request #4477 from eggsby/devel

supervisorctl: user expansion on config filepath
This commit is contained in:
Michael DeHaan 2013-10-13 06:22:02 -07:00
commit a130a8e614

View file

@ -118,7 +118,7 @@ def main():
supervisorctl_args = [ module.get_bin_path('supervisorctl', True) ]
if config:
supervisorctl_args.extend(['-c', config])
supervisorctl_args.extend(['-c', os.path.expanduser(config)])
if server_url:
supervisorctl_args.extend(['-s', server_url])
if username: