Advertisement
Guest User

Untitled

a guest
Nov 6th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.81 KB | None | 0 0
  1. salt/top.sls
  2. =====
  3. base:
  4. ### ALL SERVERS ###
  5.   '*':
  6.    # things we want ALL servers to have
  7.     - apache2
  8.     - php5
  9.     - postfix
  10.     - git
  11.  
  12. ### All CR Dev, Test and Stage Servers ###
  13.   'crwm*-(dev|test|stg)':
  14.     - match: pcre
  15.     - trapmail
  16.  
  17. ### All CR Internal Servers ###
  18.   'crwmi*':
  19.     - match: pcre
  20.     # Repos
  21.     - repo.cr.internal
  22.     # VHOSTS
  23.     - apache2.vhosts.cr.internal
  24.  
  25. ### All CR Tracking Servers ###
  26.   'crwmt*':
  27.     - match: pcre
  28.     # Repos
  29.     - repo.cr.tracking
  30.     # VHOSTS
  31.     - apache2.vhosts.cr.tracking
  32.  
  33. ### All CR Cron Servers ###
  34.   'crwmc*':
  35.     - match: pcre
  36.     # Repos
  37.     - repo.cr.tracking
  38.     - repo.cr.internal
  39.     # Crons
  40.     - cron.cr
  41.  
  42. salt/cron/cr.sls
  43. =====
  44. # Crons
  45. cron_cr:
  46.   cron.file:
  47.     - name: salt://cron/cr_crons
  48.     - user: root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement