Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.31 KB | None | 0 0
  1. # SaltStack top.sls
  2. base:
  3.   'minion01*':
  4.    - apache
  5.     - owncloud
  6.       #- configure_for: apache
  7.  
  8.   'minion02*':
  9.    - nginx
  10.     - owncloud
  11.       #- configure_for: nginx
  12.  
  13.  
  14. #Ansible example:
  15. - hosts: webservers
  16.   tasks:
  17.   - include_role:
  18.        name: owncloud
  19.     vars:
  20.       configure_for: nginx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement