SuperTux88's Diaspora Saltstack Formula
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.

12 lines
288B

  1. {%- if grains.get('osfinger', grains.os) == 'Ubuntu-18.04' %}
  2. redis_config:
  3. file.replace:
  4. - name: '/etc/redis/redis.conf'
  5. - pattern: '^bind .*$'
  6. - repl: 'bind 127.0.0.1'
  7. - require:
  8. - pkg: redis_package
  9. - require_in:
  10. - service: redis_service
  11. {%- endif %}