aboutsummaryrefslogtreecommitdiff
path: root/LANGUAGE_IDEAS
blob: 028f15696be6569a30182066284109f3a0747372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Example template:  
         
- Define template "webserver":
; describe template here
         
- I need to use:
; this is where we define the services/dependencies needed
    - network
    - ssh
    - python_modules as modules

- I need these accounts:
    - bsmith

- I need these packages:
    - apache
      - version: 2.2.14
    - python
      - version: 2.6.2
      - modules: modules.all

- Runtime
"""
#!/usr/bin/env python
from mrbelvedere import module

module.do_stuff(arg)
"""