mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-28 23:51:23 -07:00
replace NBSP (non-blocking space) character with a regular SPACE char (#3071)
This commit is contained in:
parent
d54d2fa4a6
commit
20db4fc560
19 changed files with 45 additions and 45 deletions
|
@ -2,7 +2,7 @@
|
|||
supervisorctl:
|
||||
name: 'pys:py1'
|
||||
state: started
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
register: result
|
||||
when: credentials.username == ''
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
|||
register: result_with_auth
|
||||
when: credentials.username != ''
|
||||
|
||||
- command: "supervisorctl -c {{ remote_dir }}/supervisord.conf {% if credentials.username %}-u {{ credentials.username }} -p {{ credentials.password }}{% endif %} status"
|
||||
- command: "supervisorctl -c {{ remote_dir }}/supervisord.conf {% if credentials.username %}-u {{ credentials.username }} -p {{ credentials.password }}{% endif %} status"
|
||||
|
||||
- name: check that service is started
|
||||
assert:
|
||||
|
@ -32,7 +32,7 @@
|
|||
supervisorctl:
|
||||
name: pys:py1
|
||||
state: started
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
register: result
|
||||
when: credentials.username == ''
|
||||
|
||||
|
@ -65,7 +65,7 @@
|
|||
supervisorctl:
|
||||
name: 'pys:py1'
|
||||
state: started
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
register: result
|
||||
when: credentials.username == ''
|
||||
|
||||
|
@ -110,7 +110,7 @@
|
|||
supervisorctl:
|
||||
name: 'pys:py1'
|
||||
state: started
|
||||
config: '{{ remote_dir }}/supervisord_not_here.conf'
|
||||
config: '{{ remote_dir }}/supervisord_not_here.conf'
|
||||
register: result
|
||||
failed_when: result is success or result is not failed
|
||||
|
||||
|
@ -118,7 +118,7 @@
|
|||
supervisorctl:
|
||||
name: 'invalid'
|
||||
state: started
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
register: result
|
||||
failed_when: result is skip or (result is success or result is not failed)
|
||||
when: credentials.username == ''
|
||||
|
@ -127,7 +127,7 @@
|
|||
supervisorctl:
|
||||
name: 'invalid'
|
||||
state: started
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
config: '{{ remote_dir }}/supervisord.conf'
|
||||
username: '{{ credentials.username }}wrong_creds'
|
||||
password: '{{ credentials.password }}same_here'
|
||||
register: result
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue