Guest User

Untitled

a guest
Apr 25th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. [root@avon /srv/salt]# cat top.sls
  2. base:
  3. '*':
  4. - edit.vim
  5.  
  6. minion5.domain.tld:
  7. - edit.vim
  8.  
  9. [root@avon /srv/salt]# cat edit/vim.sls
  10. vim-lite:
  11. pkg:
  12. - installed
  13.  
  14. /root/.vimrc:
  15. file:
  16. - managed
  17. - source: salt://edit/vimrc
  18. - user: root
  19. - group: wheel
  20. - group: root
  21. - mode: 644
  22. - require:
  23. - pkg: vim-lite
Add Comment
Please, Sign In to add comment