Advertisement
Guest User

Untitled

a guest
Nov 4th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.59 KB | None | 0 0
  1. structure:
  2. =====
  3. .
  4. └── salt
  5.     ├── apache2
  6.     │   ├── init.sls
  7.     ├── git
  8.     │   └── init.sls
  9.     ├── php5
  10.     │   ├── init.sls
  11.     ├── repo
  12.     │   ├── cr
  13.     │   │   └── internal
  14.     │   │       └── init.sls
  15.     │   └── init.sls
  16.     ├── top.sls
  17.  
  18.  
  19. /salt/top.sls
  20. =====
  21. base:
  22.   '*':
  23.    - apache2
  24.     - php5
  25.     - repo
  26.   'cr*':
  27.     - match: pcre
  28.  
  29. /salt/repo/init.sls
  30. =====
  31. {% if grains['host'] == 'cri' %}
  32.   include:
  33.    - repo.cr.internal
  34. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement