1#!/bin/bash
 2
 3# this script pulls the active jenkins config files for CHART (EPS, MSG and core)
 4# into subdirectories of this directory so they can be captures by vc
 5
 6cd `dirname $0`
 7
 8cp ~jenkins/start.sh .
 9cp ~jenkins/stop.sh .
10
11for a in `find . -mindepth 0 -maxdepth 1 | grep CHART`; do
12    cp -v ~jenkins/jenkins/jobs/$a/config.xml $a
13done