# milliseconds sleep between checks on status
runInterval: 5000 

# debug logging to console?
debug: false  

# lavalamp application runner   
runner: net.sf.lavalamp.runner.Run

# controlled devices
deviceProperties:
     # device id
     - identity: 1  
       # device class
       className: net.sf.lavalamp.device.DummyApp
       path: C:/Program Files/Telldus
       # turn device on when build is successful?
       onWhenSuccessful: true
       # action if error occurs when contacting site (see javadoc for valid values)
       onError: BLINK
       # period when device is always turned off whether successful build or not
       off:
           start: 0700
           end: 0800
       buildProperties:
           # name of build      
           - build: ORIGO
             # site of build          
             siteProperties: &site01 
                # site class
                className: net.sf.lavalamp.site.BambooRemoteApi
                # site url
                url: http://build.path.se:8080/build               
           - build: ORIGOO
             siteProperties: *site01
             
     - identity: 2  
       className: net.sf.lavalamp.device.DummyApp
       path: C:/Program Files/Telldus
       onWhenSuccessful: true
       onError: BLINK
       buildProperties:
           - build: ORIGOX
             siteProperties: *site01