mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-08 23:24:21 -07:00
supervisorctl tests: shorten path to .sock file to make OSX happy. (#77)
This commit is contained in:
parent
e92f288d5b
commit
74d83d8e94
4 changed files with 15 additions and 7 deletions
|
@ -3,7 +3,7 @@
|
|||
name: 'pys:py1'
|
||||
state: stopped
|
||||
# test with 'server_url' parameter
|
||||
server_url: 'unix://{{ remote_dir }}/supervisord.sock'
|
||||
server_url: 'unix://{{ supervisord_sock_path.path }}/supervisord.sock'
|
||||
register: result
|
||||
when: credentials.username == ''
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
|||
name: 'pys:py1'
|
||||
state: stopped
|
||||
# test with unix socket
|
||||
server_url: 'unix://{{ remote_dir }}/supervisord.sock'
|
||||
server_url: 'unix://{{ supervisord_sock_path.path }}/supervisord.sock'
|
||||
username: '{{ credentials.username }}'
|
||||
password: '{{ credentials.password }}'
|
||||
register: result_with_auth
|
||||
|
@ -37,7 +37,7 @@
|
|||
name: pys:py1
|
||||
state: stopped
|
||||
# test with 'server_url' parameter
|
||||
server_url: 'unix://{{ remote_dir }}/supervisord.sock'
|
||||
server_url: 'unix://{{ supervisord_sock_path.path }}/supervisord.sock'
|
||||
register: result
|
||||
when: credentials.username == ''
|
||||
|
||||
|
@ -46,7 +46,7 @@
|
|||
name: pys:py1
|
||||
state: stopped
|
||||
# test with unix socket
|
||||
server_url: 'unix://{{ remote_dir }}/supervisord.sock'
|
||||
server_url: 'unix://{{ supervisord_sock_path.path }}/supervisord.sock'
|
||||
username: '{{ credentials.username }}'
|
||||
password: '{{ credentials.password }}'
|
||||
register: result_with_auth
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue