Advertisement
Guest User

Untitled

a guest
Oct 13th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. {% if grains['os_family'] == 'RedHat' %}
  2. include:
  3. - repos.epel
  4. {% endif %}
  5.  
  6. salt-minion:
  7. pkg:
  8. - latest
  9.  
  10. /etc/salt/minion:
  11. file:
  12. - managed
  13. - watch:
  14. - pkg: salt-minion
  15. - require:
  16. - pkg: salt-minion
  17.  
  18. the_service:
  19. service:
  20. - running
  21. - name: salt-minion
  22. - require:
  23. - pkg: salt-minion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement