You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config_3.2.2.local.php 599B

1234567891011121314
  1. <?php
  2. {% for key, value in salt['pillar.get']("model:postfixadmin:extraConfig", {}).items() %}
  3. $CONF['{{ key }}'] = {{ value }};
  4. {% endfor %}
  5. $CONF['database_type'] = 'pgsql';
  6. $CONF['database_host'] = '{{ salt['pillar.get']("model:postgres:host") }}';
  7. $CONF['database_port'] = '{{ salt['pillar.get']("model:postgres:port") }}';
  8. $CONF['database_user'] = '{{ salt['pillar.get']("model:postgres:user") }}';
  9. $CONF['database_password'] = '{{ salt['pillar.get']("model:postgres:password") }}';
  10. $CONF['database_name'] = '{{ salt['pillar.get']("model:postgres:database") }}';
  11. $CONF['configured'] = true;