Added vagrant setup for a Jenkins system for ONAP
Add a set of vagrant scripts that will set up a
local Jenkins environment with pre-defined jobs
to build all the ONAP java code and docker images.
Change-Id: I67ed254bcb38a7be989b7c2861fd3ea4ec9c66f2
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
diff --git a/bootstrap/jenkins/vagrant/jenkins-init-1.sh b/bootstrap/jenkins/vagrant/jenkins-init-1.sh
new file mode 100755
index 0000000..a5599a7
--- /dev/null
+++ b/bootstrap/jenkins/vagrant/jenkins-init-1.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+git config --global user.email "jenkins@localhost"
+git config --global user.name "jenkins"
+
+cd ~/jenkins
+
+cp /etc/skel/.profile .
+cat > .bashrc <<EOF
+alias ls='ls --color -F'
+EOF
+
+git init
+
+git add -A
+git commit -m 'Initial installation config'
+
+mkdir -p ~/.m2
+cp /vagrant/settings.xml ~/.m2
+rm -f secrets/initialAdminPassword
+rm -rf users/admin
+rsync -avP /vagrant/jenkins/ .
+
+git add -A
+git commit -m 'Set up jenkins user'
+