This repository was archived by the owner on Oct 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·460 lines (444 loc) · 16.3 KB
/
install.sh
File metadata and controls
executable file
·460 lines (444 loc) · 16.3 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
#!/bin/sh
set -e
# Load OS information.
# shellcheck source=/dev/null
. /etc/os-release
usage(){
/usr/bin/echo 'install.sh [OPTIONS]'
/usr/bin/echo 'Install the latest ce-provision version, or the version specified as option.'
/usr/bin/echo 'Please ensure you are using Debian Linux or similar and at least Bullseye (11) or higher.'
/usr/bin/echo ''
/usr/bin/echo 'Available options:'
/usr/bin/echo '--version: ce-provision version to use (default: 2.x)'
/usr/bin/echo '--user: Ansible controller user (default: controller)'
/usr/bin/echo '--config: Git URL to your ce-provision Ansible config repository (default: https://github.com/codeenigma/ce-provision-config-example.git)'
/usr/bin/echo '--config-branch: branch of your Ansible config repository to use (default: 2.x)'
/usr/bin/echo '--hostname: the server hostname to set (default: depends on system or provider)'
/usr/bin/echo '--no-firewall: skip installing iptables with ports 22, 80 and 443 open'
/usr/bin/echo '--gitlab: install GitLab CE on this server (default: no, set to desired GitLab address to install, e.g. gitlab.example.com)'
/usr/bin/echo '--ansible-version: pass an Ansible version string such as <12 for less than version 12 (default: latest)'
/usr/bin/echo '--letsencrypt: try to create an SSL certificate with LetsEncrypt (requires DNS pointing at this server for provided GitLab URL)'
/usr/bin/echo '--aws: enable AWS support'
/usr/bin/echo '--docker: script is running in a Docker container'
/usr/bin/echo ''
}
# Parse options arguments.
parse_options(){
while [ "${1:-}" ]; do
case "$1" in
"--version")
shift
VERSION="$1"
;;
"--user")
shift
CONTROLLER_USER="$1"
;;
"--config")
shift
CONFIG_REPO="$1"
;;
"--config-branch")
shift
CONFIG_REPO_BRANCH="$1"
;;
"--hostname")
shift
SERVER_HOSTNAME="$1"
;;
"--gitlab")
shift
GITLAB_URL="$1"
;;
"--ansible-version")
shift
ANSIBLE_VERSION="$1"
;;
"--letsencrypt")
LE_SUPPORT="yes"
;;
"--no-firewall")
FIREWALL="false"
;;
"--aws")
AWS_SUPPORT="true"
;;
"--docker")
IS_LOCAL="true"
;;
*)
usage
exit 1
;;
esac
shift
done
}
# Set default variables.
VERSION="2.x"
CONTROLLER_USER="controller"
CONFIG_REPO="https://github.com/codeenigma/ce-provision-config-example.git"
CONFIG_REPO_BRANCH="2.x"
GITLAB_URL="no"
LE_SUPPORT="no"
FIREWALL="true"
AWS_SUPPORT="false"
IS_LOCAL="false"
SERVER_HOSTNAME=$(hostname)
ANSIBLE_VERSION=""
# Parse options.
parse_options "$@"
# Check root user.
if [ "$(id -u)" -ne 0 ]
then echo "Please run this script as root or using sudo!"
exit
fi
# Check we are using a compatible Linux distribution.
/usr/bin/echo "-------------------------------------------------"
if [ "$ID" != "debian" ]; then
if [ "$ID_LIKE" != "debian" ]; then
/usr/bin/echo "ce-provision only supports Debian Linux and derivatives."
exit 0
else
/usr/bin/echo "ce-provision works best with Debian Linux, it may work with this distro but no promises!"
/usr/bin/echo "-------------------------------------------------"
/usr/bin/echo "Carrying on regardless..."
/usr/bin/echo "-------------------------------------------------"
fi
fi
/usr/bin/echo "Beginning ce-provision installation."
/usr/bin/echo "-------------------------------------------------"
# Create required user.
/usr/bin/echo "Check if user named $CONTROLLER_USER exists."
# Check if user exists
if /usr/bin/id "$CONTROLLER_USER" >/dev/null 2>&1; then
/usr/bin/echo "The user named $CONTROLLER_USER already exists. Skipping."
else
# User not found so let's create them.
/usr/bin/echo "Create user named $CONTROLLER_USER."
/usr/sbin/useradd -s /bin/bash "$CONTROLLER_USER"
/usr/bin/echo "$CONTROLLER_USER":"$CONTROLLER_USER" | chpasswd -m
/usr/bin/install -m 755 -o "$CONTROLLER_USER" -g "$CONTROLLER_USER" -d /home/"$CONTROLLER_USER"
/usr/bin/install -m 700 -o "$CONTROLLER_USER" -g "$CONTROLLER_USER" -d /home/"$CONTROLLER_USER"/.ssh
/usr/bin/echo root:"$CONTROLLER_USER" | chpasswd -m
/usr/bin/echo "$CONTROLLER_USER ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/"$CONTROLLER_USER"
/usr/bin/chmod 0440 /etc/sudoers.d/"$CONTROLLER_USER"
fi
/usr/bin/echo "-------------------------------------------------"
# Install APT packages.
/usr/bin/echo "Install required packages."
/usr/bin/echo "-------------------------------------------------"
/usr/bin/apt-get update
/usr/bin/apt-get dist-upgrade -y -o Dpkg::Options::="--force-confnew"
/usr/bin/apt-get install -y -o Dpkg::Options::="--force-confnew" \
git ca-certificates git-lfs \
openssh-client nfs-common stunnel4 \
python3-venv python3-debian \
acl zip unzip gzip tar dnsutils net-tools
/usr/bin/echo "-------------------------------------------------"
# Install Ansible in a Python virtual environment.
/usr/bin/echo "Install Ansible and dependencies."
/usr/bin/echo "-------------------------------------------------"
/usr/bin/su - "$CONTROLLER_USER" -c "/usr/bin/python3 -m venv /home/$CONTROLLER_USER/ce-python"
/usr/bin/su - "$CONTROLLER_USER" -c "/home/$CONTROLLER_USER/ce-python/bin/python3 -m pip install --upgrade pip"
/usr/bin/su - "$CONTROLLER_USER" -c "/home/$CONTROLLER_USER/ce-python/bin/pip install 'ansible$ANSIBLE_VERSION' netaddr python-debian"
if [ "$AWS_SUPPORT" = "true" ]; then
/usr/bin/su - "$CONTROLLER_USER" -c "/home/$CONTROLLER_USER/ce-python/bin/pip install boto3"
fi
/usr/bin/echo "-------------------------------------------------"
# Install ce-provision.
/usr/bin/echo "Install ce-provision."
/usr/bin/echo "-------------------------------------------------"
if [ ! -d "/home/$CONTROLLER_USER/ce-provision" ]; then
/usr/bin/su - "$CONTROLLER_USER" -c "git clone --branch $VERSION https://github.com/codeenigma/ce-provision.git /home/$CONTROLLER_USER/ce-provision"
/usr/bin/su - "$CONTROLLER_USER" -c "git clone --branch $CONFIG_REPO_BRANCH $CONFIG_REPO /home/$CONTROLLER_USER/ce-provision/config"
/usr/bin/su - "$CONTROLLER_USER" -c "/usr/bin/ln -s /home/$CONTROLLER_USER/ce-provision/config/ansible.cfg /home/$CONTROLLER_USER/ce-provision/ansible.cfg"
else
/usr/bin/echo "ce-provision directory at /home/$CONTROLLER_USER/ce-provision already exists. Updating."
/usr/bin/su - "$CONTROLLER_USER" -c "cd /home/$CONTROLLER_USER/ce-provision && git pull origin $VERSION"
/usr/bin/su - "$CONTROLLER_USER" -c "cd /home/$CONTROLLER_USER/ce-provision/config && git pull origin $CONFIG_REPO_BRANCH"
/usr/bin/echo "-------------------------------------------------"
fi
/usr/bin/su - "$CONTROLLER_USER" -c "/usr/bin/mkdir -p /home/$CONTROLLER_USER/ce-provision/galaxy/roles"
/usr/bin/su - "$CONTROLLER_USER" -c "/usr/bin/mkdir -p /home/$CONTROLLER_USER/ce-provision/galaxy/ansible_collections"
/usr/bin/su - "$CONTROLLER_USER" -c "cd /home/$CONTROLLER_USER/ce-provision && /home/$CONTROLLER_USER/ce-python/bin/ansible-galaxy collection install ansible.posix -p /home/$CONTROLLER_USER/ce-provision/galaxy/ansible_collections --force"
# Create playbook for ce-provision.
/bin/cat >"/home/$CONTROLLER_USER/ce-provision/provision.yml" << EOL
---
- hosts: "localhost"
become: true
vars_files:
- vars.yml
tasks:
- name: Configure system hosts file.
ansible.builtin.import_role:
name: debian/hosts
when: not is_local
- name: Install ce-provision.
ansible.builtin.import_role:
name: debian/ce_provision
- name: Configure controller user.
ansible.builtin.import_role:
name: debian/user_provision
- name: Install and publish a GPG key for the controller user.
ansible.builtin.import_role:
name: debian/gpg_key
- name: Install SOPS for encrypting secrets in repositories with GPG.
ansible.builtin.import_role:
name: debian/sops
EOL
# Create vars file.
/bin/cat >"/home/$CONTROLLER_USER/ce-provision/vars.yml" << EOL
---
_domain_name: ${SERVER_HOSTNAME}
_ce_provision_data_dir: /home/${CONTROLLER_USER}/ce-provision/data
_ce_provision_username: ${CONTROLLER_USER}
hosts_hostname: ${SERVER_HOSTNAME}
hosts_entries:
- name: ${SERVER_HOSTNAME}
ip: 127.0.0.1
ce_provision:
venv_path: /home/${CONTROLLER_USER}/ce-python
venv_command: /usr/bin/python3 -m venv
venv_install_username: ${CONTROLLER_USER}
upgrade_timer_name: upgrade_ce_provision_ansible
aws_support: ${AWS_SUPPORT}
new_user: true
username: ${CONTROLLER_USER}
ssh_key_bits: "521"
ssh_key_type: ed25519
public_key_name: id_ed25519.pub
own_repository: "https://github.com/codeenigma/ce-provision.git"
own_repository_branch: "${VERSION}"
own_repository_skip_checkout: false
local_dir: "/home/${CONTROLLER_USER}/ce-provision"
config_repository: "${CONFIG_REPO}"
config_repository_branch: "${CONFIG_REPO_BRANCH}"
config_repository_skip_checkout: false
groups: []
contrib_roles:
- directory: wazuh
repo: https://github.com/wazuh/wazuh-ansible.git
branch: "v4.7.2"
- directory: systemd_timers
repo: https://github.com/vlcty/ansible-systemd-timers.git
branch: master
galaxy_custom_requirements_file: ""
upgrade_galaxy:
enabled: true
command: "/home/${CONTROLLER_USER}/ce-python/bin/ansible-galaxy collection install --force"
on_calendar: "Mon *-*-* 04:00:00"
ce_ansible:
venv_path: /home/${CONTROLLER_USER}/ce-python
venv_command: /usr/bin/python3 -m venv
venv_install_username: ${CONTROLLER_USER}
ansible_version: "${ANSIBLE_VERSION}"
upgrade:
enabled: false
linters:
enabled: true
user_provision:
username: "${CONTROLLER_USER}"
home: "/home/${CONTROLLER_USER}"
create: false
create_home: false
update_password: always
sudo_config:
entity_name: "${CONTROLLER_USER}"
hosts: "ALL"
operators: "(ALL)"
tags: "NOPASSWD:"
commands: "ALL"
filename: "${CONTROLLER_USER}"
groups:
- bypass2fa
ssh_keys:
- "{{ lookup('file', '/home/${CONTROLLER_USER}/ce-provision/data/localhost/home/${CONTROLLER_USER}/.ssh/' + ce_provision.public_key_name) }}"
ssh_private_keys: []
known_hosts: []
known_hosts_hash: true
gpg_key:
- username: ${CONTROLLER_USER}
publish: true
key_type: RSA
key_length: 4096
email: "${CONTROLLER_USER}@${SERVER_HOSTNAME}"
expire: 0
firewall_config:
purge: true
firewall_state: started
firewall_enabled_at_boot: true
firewall_enable_ipv6: false
firewall_log_dropped_packets: true
firewall_disable_ufw: true
firewall_allowed_tcp_ports: []
rulesets:
- ssh_open
- web_open
ssh_open:
firewall_allowed_tcp_ports:
- "22"
web_open:
firewall_allowed_tcp_ports:
- "80"
- "443"
EOL
# Configure ce-provision
/usr/bin/su - "$CONTROLLER_USER" -c "cd /home/$CONTROLLER_USER/ce-provision && /home/$CONTROLLER_USER/ce-python/bin/ansible-playbook --extra-vars \"{is_local: $IS_LOCAL}\" /home/$CONTROLLER_USER/ce-provision/provision.yml"
/usr/bin/rm "/home/$CONTROLLER_USER/ce-provision/provision.yml"
# Install firewall
if [ "$FIREWALL" = "true" ]; then
# Create playbook for firewall.
/usr/bin/echo "-------------------------------------------------"
/usr/bin/echo "Install firewall."
/usr/bin/echo "-------------------------------------------------"
/bin/cat >"/home/$CONTROLLER_USER/ce-provision/provision.yml" << EOL
---
- hosts: "localhost"
become: true
vars_files:
- vars.yml
tasks:
- name: Install iptables firewall.
ansible.builtin.import_role:
name: debian/firewall_config
EOL
/usr/bin/su - "$CONTROLLER_USER" -c "cd /home/$CONTROLLER_USER/ce-provision && /home/$CONTROLLER_USER/ce-python/bin/ansible-playbook --extra-vars \"{is_local: $IS_LOCAL}\" /home/$CONTROLLER_USER/ce-provision/provision.yml"
/usr/bin/echo "-------------------------------------------------"
else
/usr/bin/echo "-------------------------------------------------"
/usr/bin/echo "Skipping firewall."
/usr/bin/echo "-------------------------------------------------"
fi
# Install GitLab
if [ "$GITLAB_URL" != "no" ]; then
/usr/bin/echo "Install GitLab."
/usr/bin/echo "-------------------------------------------------"
# Create playbook.
/bin/cat >"/home/$CONTROLLER_USER/ce-provision/provision.yml" << EOL
---
- hosts: "localhost"
become: true
vars_files:
- vars.yml
tasks:
- name: Configure system hosts file.
ansible.builtin.import_role:
name: debian/hosts
when: not is_local
- name: Install GitLab Runner.
ansible.builtin.import_role:
name: debian/gitlab_runner
- name: Install GitLab.
ansible.builtin.import_role:
name: debian/gitlab
EOL
# Create vars file.
/bin/cat >"/home/$CONTROLLER_USER/ce-provision/vars.yml" << EOL
---
_domain_name: ${SERVER_HOSTNAME}
hosts_hostname: ${SERVER_HOSTNAME}
hosts_entries:
- name: ${SERVER_HOSTNAME}
ip: 127.0.0.1
aliases:
- ${GITLAB_URL}
gitlab_runner:
apt_origin: "origin=packages.gitlab.com/runner/gitlab-runner,codename=\${distro_codename},label=gitlab-runner" # used by apt_unattended_upgrades
apt_signed_by: https://packages.gitlab.com/runner/gitlab-runner/gpgkey
concurrent_jobs: 10
check_interval: 0
session_timeout: 1800
runners: []
install_fargate: false
restart: false
username: "${CONTROLLER_USER}"
docker_group: "docker"
runner_workingdir: "/home/${CONTROLLER_USER}/build"
runner_config: "/etc/gitlab-runner/config.toml"
gitlab:
apt_origin: "origin=packages.gitlab.com/gitlab/gitlab-ce,codename=\${distro_codename},label=gitlab-ce" # used by apt_unattended_upgrades
apt_signed_by: https://packages.gitlab.com/gitlab/gitlab-ce/gpgkey
server_name: "${GITLAB_URL}"
email: "gitlab@${GITLAB_URL}"
gitlab_route_53:
zone: ""
linux_user: git
linux_group: git
linux_uid: nil
linux_gid: nil
linux_shell: /bin/sh
linux_user_home: /var/opt/gitlab
username: GitLab
email: "gitlab@${GITLAB_URL}"
default_theme: 1
disable_signup: true
disable_signin: false
private_projects: true
unicorn_worker_processes: 2
puma_worker_processes: 2
initial_root_password: "{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,digits') }}"
ldap:
enable: false
mattermost: false
omniauth: false
prometheus: "true"
node_exporter: "true"
alertmanager: "true"
nginx:
enable: true
listen_port: 443
listen_https: 443
client_max_body_size: "250m"
redirect_http_to_https: "true"
redirect_http_to_https_port: 80
custom_nginx_config: ""
EOL
if [ "$LE_SUPPORT" = "yes" ]; then
/usr/bin/echo "Will try to create an SSL certificate with LetsEncrypt."
/usr/bin/echo "*** THIS STEP WILL FAIL IF YOUR DNS IS NOT CORRECT! ***"
if [ -n "$(dig +short "$GITLAB_URL".)" ]; then
/usr/bin/echo "DNS record found, attempting LetsEncrypt request..."
# Write GitLab vars with LE for SSL
/bin/cat <<EOT >> "/home/$CONTROLLER_USER/ce-provision/vars.yml"
letsencrypt: "true"
ssl:
enabled: false
EOT
/usr/bin/echo "-------------------------------------------------"
else
/usr/bin/echo "No DNS found for provided URL, will create a self-signed certificate instead."
# Write GitLab vars with self-signed SSL
/bin/cat <<EOT >> "/home/$CONTROLLER_USER/ce-provision/vars.yml"
letsencrypt: "false"
ssl:
enabled: true
handling: selfsigned
replace_existing: false
EOT
/usr/bin/echo "-------------------------------------------------"
fi
else
# Write GitLab vars with self-signed SSL
/usr/bin/echo "Create a self-signed SSL certificate."
/bin/cat <<EOT >> "/home/$CONTROLLER_USER/ce-provision/vars.yml"
letsencrypt: "false"
ssl:
enabled: true
handling: selfsigned
replace_existing: false
EOT
/usr/bin/echo "-------------------------------------------------"
fi
/usr/bin/su - "$CONTROLLER_USER" -c "cd /home/$CONTROLLER_USER/ce-provision && /home/$CONTROLLER_USER/ce-python/bin/ansible-playbook --extra-vars \"{is_local: $IS_LOCAL}\" /home/$CONTROLLER_USER/ce-provision/provision.yml"
/usr/bin/echo "-------------------------------------------------"
else
/usr/bin/echo "GitLab not requested. Skipping."
/usr/bin/echo "-------------------------------------------------"
fi
# Tidy up if not a container
if [ "$IS_LOCAL" = "false" ]; then
/usr/bin/rm "/home/$CONTROLLER_USER/ce-provision/vars.yml"
/usr/bin/rm "/home/$CONTROLLER_USER/ce-provision/provision.yml"
fi
/usr/bin/echo "DONE."