{% extends "dash/base.html" %} {% block title %}Get Started{% endblock %} {% block container %} {% if host == '127.0.0.1' or host == 'localhost' %} {% endif %} {% if not user %} {% endif %}

Be sure you've taken the following steps:

  1. Create /etc/salt/master.d/saltdash.conf with the this content (be sure to set your actual password):
    
    master_job_cache: pgjsonb
    returner.pgjsonb.host: {{ host }}
    returner.pgjsonb.pass: **********
    returner.pgjsonb.db: {{ name }}
    returner.pgjsonb.port: {{ port }}
    returner.pgjsonb.user: {{ user|default_if_none:"????" }}
    
  2. Restart the salt-master service
  3. Run a test command like salt '*' test.ping
{% endblock %}