blob: 104f040c24da7f0076f9e1640d3557b99cce754f (
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
|
#!/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' > /dev/null
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' > /dev/null
|