소스 검색

Merge "Make admin user for mongodb optional"

pull/73/head
Ondrej Smola 6 년 전
부모
커밋
8ad5417460
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      salt/files/minion.conf

+ 4
- 0
salt/files/minion.conf 파일 보기

@@ -143,9 +143,13 @@ mysql.charset: 'utf8'
{%- if pillar.get('mongodb', {}).server is defined %}
mongodb.host: 'localhost'
mongodb.port: {{ pillar.mongodb.server.bind.port }}
{%- if pillar.mongodb.server.get('admin', {}).user is defined %}
mongodb.user: '{{ pillar.mongodb.server.admin.user }}'
{%- endif %}
{%- if pillar.mongodb.server.get('admin', {}).password is defined %}
mongodb.password: '{{ pillar.mongodb.server.admin.password }}'
{%- endif %}
{%- endif %}

{%- if pillar.get('postgresql', {}).server is defined %}
postgres.user: 'postgres'

Loading…
취소
저장