-
Notifications
You must be signed in to change notification settings - Fork 67
/
install-rundeck.sh
172 lines (144 loc) · 4.95 KB
/
install-rundeck.sh
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#!/usr/bin/env bash
set -eu
# Process command line arguments.
if [[ $# -lt 2 ]]
then
echo >&2 "usage: $0 rdip rundeck_yum_repo"
exit 2
fi
RDIP=$1
RUNDECK_REPO_URL=$2
# Software install
# ----------------
#
# Utilities
#
yum -y install coreutils
#
# JRE
#
yum -y install java-1.8.0 zip
#
# Rundeck server and CLI
#
if [ -n "$RUNDECK_REPO_URL" ]
then
curl -# --fail -L -o /etc/yum.repos.d/rundeck.repo "$RUNDECK_REPO_URL" || {
echo "failed downloading rundeck.repo config"
exit 2
}
else
if ! rpm -q rundeck-repo
then
rpm -Uvh http://repo.rundeck.org/latest.rpm
fi
fi
yum -y install rundeck rundeck-cli
# Reset the home directory permission as it comes group writeable
# and ssh will expect it to be only owner writable.
chmod 755 ~rundeck
# Add Plugins
echo "Installing plugins ..."
LIBEXT=/var/lib/rundeck/libext # Plugin directory
echo " - springboot"
[[ ! -f $LIBEXT/springboot-steps.zip ]] && {
(cd /vagrant/plugins; zip -r $LIBEXT/springboot-steps.zip springboot-steps)
}
echo " - mysql"
[[ ! -f $LIBEXT/mysql-sqlscript-step.zip ]] && {
(cd /vagrant/plugins; zip -r $LIBEXT/mysql-sqlscript-step.zip mysql-sqlscript-step)
}
echo " - Hipchat"
[[ ! -f $LIBEXT/rundeck-hipchat-plugin-1.0.0.jar ]] && {
cp /vagrant/rundeck-hipchat-plugin-1.0.0.jar $LIBEXT
}
echo " - nexus"
[[ ! -f $LIBEXT/nexus-step-plugins-1.0.0.jar ]] && {
curl -sfL -o $LIBEXT/nexus-step-plugins-1.0.2.jar https://github.com/rundeck-plugins/nexus-step-plugins/releases/download/1.0.2/nexus-step-plugins-1.0.2.jar
}
echo " - puppet"
[[ ! -f $LIBEXT/puppet-apply-step.zip ]] && {
curl -sfL -o $LIBEXT/puppet-apply-step.zip https://github.com/rundeck-plugins/puppet-apply-step/releases/download/v1.0.0/puppet-apply-step-1.0.0.zip
}
echo " - jira"
[[ ! -f $LIBEXT/jira-workflow-step-1.0.0.jar ]] && {
curl -sfL -o $LIBEXT/jira-workflow-step-1.0.0.jar https://github.com/rundeck-plugins/jira-workflow-step/releases/download/v1.0.0/jira-workflow-step-1.0.0.jar
}
[[ ! -f $LIBEXT/jira-notification-1.0.0.jar ]] && {
curl -sfL -o $LIBEXT/jira-notification-1.0.0.jar https://github.com/rundeck-plugins/jira-notification/releases/download/v1.0.0/jira-notification-1.0.0.jar
}
echo " - jabber"
[[ ! -f $LIBEXT/jabber-notification-1.0.jar ]] && {
curl -sfL -o $LIBEXT/jabber-notification-1.0.jar https://github.com/rundeck-plugins/jabber-notification/releases/download/v1.0/jabber-notification-1.0.jar
}
echo " - pagerduty"
[[ ! -f $LIBEXT/PagerDutyNotification.groovy ]] && {
curl -sfL -o $LIBEXT/PagerDutyNotification.groovy https://github.com/rundeck-plugins/pagerduty-notification/raw/master/src/main/groovy/com/rundeck/plugins/PagerResponse.groovy
}
echo " - EC2"
[[ ! -f $LIBEXT/rundeck-ec2-nodes-plugin-1.5.3.jar ]] && {
curl -sfL -o $LIBEXT/rundeck-ec2-nodes-plugin-1.5.5.jar https://github.com/rundeck-plugins/rundeck-ec2-nodes-plugin/releases/download/v1.5.5/rundeck-ec2-nodes-plugin-1.5.5.jar
}
echo " - nixy/file ..."
curl -sfL -o $LIBEXT/nixy-file.zip "https://dl.bintray.com/rundeck/rundeck-plugins/nixy-file-1.0.0.zip"
echo " - nixy/waitfor ..."
curl -sfL -o $LIBEXT/nixy-waitfor.zip "https://dl.bintray.com/rundeck/rundeck-plugins/nixy-waitfor-1.0.0.zip"
chown -R rundeck:rundeck $LIBEXT
# Configure the system
# Rewrite the rundeck-config.properties to use the IP of this vagrant VM
sed -i "s^grails.serverURL=.*^grails.serverURL=http://$RDIP:4440^g" /etc/rundeck/rundeck-config.properties
# Add user accounts and groups to the realm.properties
cat >> /etc/rundeck/realm.properties <<EOF
admin:admin,user,admin,anvils
dev:dev,dev,user,anvils
ops:ops,ops,user,anvils
releng:releng,releng,user,anvils
EOF
echo "export RD_URL=http://$RDIP:4440 RD_USER=admin RD_PASSWORD=admin RD_PROJECT=anvils" >> ~rundeck/.bash_profile
#
# Disable the firewall so we can easily access it from the host
# centos-6
# service iptables stop
# centos-7
systemctl disable firewalld
systemctl stop firewalld
#
# Start up rundeck
# ----------------
#
set +e
if ! /etc/init.d/rundeckd status
then
echo "Starting rundeck..."
(
exec 0>&- # close stdin
/etc/init.d/rundeckd start
) &> /var/log/rundeck/service.log # redirect stdout/err to a log.
let count=0
let max=18
while [ $count -le $max ]
do
if ! grep "Connector@" /var/log/rundeck/service.log
then printf >&2 ".";# progress output.
else break; # successful message matched by grep.
fi
let count=$count+1;# increment attempts
[ $count -eq $max ] && {
echo >&2 "FAIL: Execeeded max attemps "
exit 1
}
sleep 10
done
fi
echo "Rundeck started."
# Add the Anvils system level ACLs
echo "Loading system level ACL policy files ..."
export RD_URL=$(awk -F= "/grails.serverURL/ {print \$2}" /etc/rundeck/rundeck-config.properties)
export RD_USER=admin RD_PASSWORD=admin
export RD_HTTP_TIMEOUT=60
for acl in /vagrant/aclpolicy/system/*.aclpolicy
do
rd system acls create --file $acl --name $(basename $acl)
done
rd system acls list
exit $?