ansible-supervisord icon indicating copy to clipboard operation
ansible-supervisord copied to clipboard

replacement of supervisord_inet_password in supervisord.conf

Open mattimatti opened this issue 8 years ago • 0 comments

port = {{supervisord_inet_address}}:{{supervisord_inet_port}}
{% if supervisord_inet_authenticated %}
username = {{supervisord_inet_username}}
password = {{supervisord_inet_username}}
{% endif %}
{% endif %}

should be

port = {{supervisord_inet_address}}:{{supervisord_inet_port}}
{% if supervisord_inet_authenticated %}
username = {{supervisord_inet_username}}
password = {{supervisord_inet_password}}
{% endif %}
{% endif %}

mattimatti avatar Dec 20 '16 18:12 mattimatti