-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathubuntu-setup-1804.sh
executable file
·631 lines (525 loc) · 26 KB
/
ubuntu-setup-1804.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
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
#!/usr/bin/env bash
set -e
printf -- "#########################################\n"
printf -- "# This script has only been tested with #\n"
printf -- "# Ubuntu 18.04 #\n"
printf -- "# It might work with other versions #\n"
printf -- "#########################################\n\n"
###################################################################################
# If you add your public SSH-Key here, password authentication to the server #
# will be disabled. Using password authentication is NOT recommend! #
# #
# Remote login as 'root' is disabled by default. If you need to use the root user #
# directly (not recommend), use 'sudo -i' to become root when needed. #
###################################################################################
export SCRIPT_USERNAME='reactiion'
export SCRIPT_SSH_KEY=''
export VERSION_GIT=2.23.0
export VERSION_TMUX=3.0
export VERSION_VIM=8.1.2234
export VERSION_ZSH=5.7.1
export VERSION_FASD=1.0.1
export VERSION_LIBRESSL=3.0.2
export VERSION_CMAKE=3.15.5
export VERSION_CURL=7.66.0
printf -- "- Adding user '$SCRIPT_USERNAME'...\n\n"
adduser --quiet --gecos "" $SCRIPT_USERNAME
clear;
printf -- "#########################################\n"
printf -- "# This script has only been tested with #\n"
printf -- "# Ubuntu 18.04 #\n"
printf -- "# It might work with other versions #\n"
printf -- "#########################################\n\n"
printf -- "- Adding user '$SCRIPT_USERNAME'...ok\n"
exec 3>&1
exec 4>&2
#exec 1>/dev/null
#exec 2>/dev/null
gpasswd -a $SCRIPT_USERNAME sudo
gpasswd -a $SCRIPT_USERNAME www-data
printf -- "- Updating system..." >&3
cat <<'EOF' > /etc/apt/apt.conf.d/local
Dpkg::Options {
"--force-confdef";
"--force-confold";
}
EOF
export DEBIAN_FRONTEND=noninteractive
apt-get -y update
apt-get -y install software-properties-common language-pack-en-base
timedatectl set-timezone Europe/Berlin
export LC_ALL='en_US.UTF-8'
export LANG='en_US.UTF-8'
update-locale LC_ALL="en_GB.UTF-8" LANG="en_GB.UTF-8"
add-apt-repository -y ppa:jonathonf/gcc
add-apt-repository -y ppa:ondrej/php
apt-get -y update
apt-get -y upgrade
apt-get -y dist-upgrade
apt-get -y autoremove
apt-get -y install autoconf \
automake \
build-essential \
checkinstall \
clang \
curl \
dbus \
g++ \
g++-7 \
gcc \
gcc-7 \
gettext \
git \
htop \
iftop \
jq \
landscape-common \
libcrypto++-dev \
libcurl4-openssl-dev \
libevent-dev \
libiw-dev \
libnghttp2-dev \
libprotobuf-dev \
libsqlite3-dev \
libssl-dev \
libtool \
libz-dev \
libgd-dev \
libgeoip-dev \
m4 \
man \
mosh \
musl-tools \
ncurses-dev \
ncurses-term \
netcat \
ntp \
ufw \
pax \
pkg-config \
python \
python-dev \
python-pip \
python3 \
python3-dev \
python3-pip \
software-properties-common \
sudo \
tree \
vim \
wget \
zsh
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 100 \
--slave /usr/bin/g++ g++ /usr/bin/g++-7
printf -- "ok\n" >&3
printf -- "- Building essentials using toast..." >&3
chmod -R 1777 /tmp
adduser toast --disabled-login --disabled-password --quiet --system
wget -q -O- http://toastball.net/toast/toast-1.488 | perl -x - arm toast
genlink() {
echo "https://github.com/$1/$2/tarball/$3"
}
toast arm --armdir="/usr/local/libressl" \
--noreconfigure \
--confappend="--disable-shared" \
--compilecmd="./config -fPIC --disable-shared --prefix=/usr/local/libressl" \
libressl/$VERSION_LIBRESSL: \
"https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-$VERSION_LIBRESSL.tar.gz"
toast arm --confappend="--with-ssl=/usr/local/libressl --with-nghttp2" \
curl/$VERSION_CURL: \
"https://curl.haxx.se/download/curl-$VERSION_CURL.tar.gz"
toast arm --confappend="--without-openssl --with-curl=/usr/local" \
git/$VERSION_GIT: \
https://www.kernel.org/pub/software/scm/git/git-$VERSION_GIT.tar.gz
toast arm --confappend="--with-ssl-dir=/usr/local/libressl --with-ldflags=-Wl,-R/usr/local/libressl/lib" \
ftp://mirror.hs-esslingen.de/pub/OpenBSD/OpenSSH/portable/
toast arm tmux/$VERSION_TMUX: $(genlink tmux tmux $VERSION_TMUX) \
--compilecmd='./autogen.sh && ./configure && make'
toast arm vim/$VERSION_VIM: $(genlink vim vim v$VERSION_VIM)
toast arm zsh/$VERSION_ZSH: $(genlink 'zsh-users' zsh "zsh-$VERSION_ZSH") \
--compilecmd='./Util/preconfig && ./configure && make' \
--installcmd='make install.bin && make install.modules && make install.fns'
toast arm fasd/$VERSION_FASD: $(genlink clvv fasd $VERSION_FASD)
wget https://raw.githubusercontent.com/frk1/mirrors/master/rg -O /usr/local/bin/rg
chmod +x /usr/local/bin/rg
wget https://cmake.org/files/v3.15/cmake-$VERSION_CMAKE-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
tar --strip-components 1 -xzvf /tmp/cmake.tar.gz -C /usr/local
curl -sSL http://git.io/git-extras-setup | bash
apt-get -yqq purge nginx nginx-common nginx-full
rm -rf /etc/nginx
printf -- "ok\n" >&3
printf -- "- Configuring user profile..." >&3
printf -- "/usr/local/bin/zsh\n" >> /etc/shells
chsh -s /usr/local/bin/zsh $SCRIPT_USERNAME
if [[ ! -z "$SCRIPT_SSH_KEY" ]]; then
cd /home/$SCRIPT_USERNAME
mkdir -p .ssh
touch .ssh/authorized_keys .ssh/known_hosts
printf -- "$SCRIPT_SSH_KEY\n" >> .ssh/authorized_keys
chmod 700 .ssh
chmod 600 .ssh/authorized_keys
ssh-keyscan github.com > .ssh/known_hosts
fi
cat <<'EOF' > /home/$SCRIPT_USERNAME/.zshenv
export EDITOR='vim'
export VISUAL='vim'
export PAGER='less'
export LANG='en_US.UTF-8'
export N_PREFIX="$HOME/.n"
export PATH="$N_PREFIX/bin:$HOME/.toast/armed/bin:$HOME/.cargo/bin:$PATH"
typeset -gU cdpath fpath mailpath path
EOF
chown -Rh $SCRIPT_USERNAME /home/$SCRIPT_USERNAME/.zshenv
runuser -l $SCRIPT_USERNAME -c 'zsh -s' <<'EOF'
cd ~
git clone --recursive https://github.com/Eriner/zim.git ${ZDOTDIR:-${HOME}}/.zim
setopt EXTENDED_GLOB
for template_file ( ${ZDOTDIR:-${HOME}}/.zim/templates/* ); do
user_file="${ZDOTDIR:-${HOME}}/.${template_file:t}"
touch ${user_file}
( print -rn "$(<${template_file})$(<${user_file})" >! ${user_file} ) 2>/dev/null
done
EOF
chown -Rh $SCRIPT_USERNAME /home/$SCRIPT_USERNAME
printf -- "ok\n"
printf -- "- Configuring openSSH server..."
cat <<'EOF' > /etc/ssh/sshd_config
HostKey /etc/ssh/ssh_host_ed25519_key
HostKey /etc/ssh/ssh_host_rsa_key
KexAlgorithms [email protected],diffie-hellman-group-exchange-sha256
AuthenticationMethods publickey
LogLevel INFO
PermitRootLogin No
EOF
cat <<'EOF' > /etc/ssh/ssh_config
HashKnownHosts yes
HostKeyAlgorithms [email protected],[email protected],ssh-ed25519,ssh-rsa,[email protected],[email protected],[email protected],ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256
KexAlgorithms [email protected],ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256
MACs [email protected],[email protected],[email protected],hmac-sha2-512,hmac-sha2-256,[email protected]
EOF
if [ -z "$SCRIPT_SSH_KEY" ]; then
sed -i "/AuthenticationMethods/s/publickey/publickey password/g" /etc/ssh/sshd_config
fi
cd /etc/ssh
shred -u ssh_host_*key*
ssh-keygen -t ed25519 -f ssh_host_ed25519_key -N ''
ssh-keygen -t rsa -b 4096 -f ssh_host_rsa_key -N ''
systemctl restart sshd
printf -- "ok\n" >&3
printf -- "- Configuring firewall..." >&3
ufw logging on
ufw default deny incoming
ufw default allow outgoing
ufw allow ssh/tcp
ufw allow 80/tcp
ufw allow 443/tcp
ufw --force enable
printf -- "ok\n" >&3
printf -- "- Building nginx..." >&3
mkdir -p /tmp/build-nginx
cd /tmp/build-nginx
export NGINX_VERSION=1.17.3
export VERSION_ZLIB=zlib-1.2.11
export VERSION_PCRE=pcre-8.43
export VERSION_LIBRESSL=libressl-$VERSION_LIBRESSL
export VERSION_NGINX=nginx-$NGINX_VERSION
export SOURCE_LIBRESSL=https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/
export SOURCE_PCRE=https://ftp.pcre.org/pub/pcre/
export SOURCE_NGINX=https://nginx.org/download/
export SOURCE_ZLIB=https://zlib.net/
rm -rf build
mkdir build
NB_PROC=$(grep -c ^processor /proc/cpuinfo)
wget -P ./build $SOURCE_PCRE$VERSION_PCRE.tar.gz
wget -P ./build $SOURCE_LIBRESSL$VERSION_LIBRESSL.tar.gz
wget -P ./build $SOURCE_NGINX$VERSION_NGINX.tar.gz
wget -P ./build $SOURCE_ZLIB$VERSION_ZLIB.tar.gz
cd build
tar xzf $VERSION_NGINX.tar.gz
tar xzf $VERSION_LIBRESSL.tar.gz
tar xzf $VERSION_PCRE.tar.gz
tar xzf $VERSION_ZLIB.tar.gz
rm -rf *.tar.gz
cd ./$VERSION_NGINX
./configure --prefix=/usr/share/nginx \
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib/nginx/modules \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/run/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--user=www-data \
--group=www-data \
--build=Ubuntu \
--http-client-body-temp-path=/var/lib/nginx/body \
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
--http-proxy-temp-path=/var/lib/nginx/proxy \
--http-scgi-temp-path=/var/lib/nginx/scgi \
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
--with-openssl=../$VERSION_LIBRESSL \
--with-pcre=../$VERSION_PCRE \
--with-pcre-jit \
--with-zlib=../$VERSION_ZLIB \
--with-compat \
--with-file-aio \
--with-threads \
--with-http_addition_module \
--with-http_auth_request_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_mp4_module \
--with-http_random_index_module \
--with-http_realip_module \
--with-http_slice_module \
--with-http_ssl_module \
--with-http_sub_module \
--with-http_stub_status_module \
--with-http_v2_module \
--with-http_secure_link_module \
--with-mail \
--with-mail_ssl_module \
--with-stream \
--with-stream_realip_module \
--with-stream_ssl_module \
--with-stream_ssl_preread_module \
--with-debug \
--with-cc-opt='-g -O2 -fPIC -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' \
--with-ld-opt='-Wl,-Bsymbolic-functions -fPIC -Wl,-z,relro -Wl,-z,now'
make -j $NB_PROC \
&& checkinstall --pkgname="nginx-libressl" \
--pkgversion="$NGINX_VERSION" \
--provides="nginx" \
--requires="libc6" \
--strip=yes \
--stripso=yes \
--backup=yes \
-y \
--install=yes
cat <<EOF > /etc/systemd/system/nginx.service
[Unit]
Description=A high performance web server and a reverse proxy server
After=network.target
[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t -q -g 'daemon on; master_process on;'
ExecStart=/usr/sbin/nginx -g 'daemon on; master_process on;'
ExecReload=/usr/sbin/nginx -g 'daemon on; master_process on;' -s reload
ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /run/nginx.pid
TimeoutStopSec=5
KillMode=mixed
[Install]
WantedBy=multi-user.target
EOF
chmod 644 /etc/systemd/system/nginx.service
rm -f /etc/nginx/*.default
mkdir -p /var/lib/nginx/body
mkdir -p /etc/nginx/conf.d
mkdir -p /var/www
mkdir -p /var/www/default
mkdir -p /var/www/letsencrypt
systemctl daemon-reload
systemctl enable nginx.service
systemctl start nginx.service
printf -- "ok\n" >&3
printf -- "- Configuring nginx..." >&3
curl https://get.acme.sh | sh
mkdir -p /etc/nginx/ssl
rm -f /etc/nginx/conf.d/default.conf
/usr/bin/openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
/usr/bin/openssl req -new \
-newkey rsa:4096 \
-days 3650 \
-nodes \
-x509 \
-subj "/C=NL/ST=Amsterdam/L=Amsterdam/O=Dis/CN=example.org" \
-keyout /etc/nginx/ssl/nginx-rsa.key \
-out /etc/nginx/ssl/nginx-rsa.crt
/usr/bin/openssl req -new \
-newkey ec \
-pkeyopt ec_paramgen_curve:P-384 \
-days 3650 \
-nodes \
-x509 \
-subj "/C=NL/ST=Amsterdam/L=Amsterdam/O=Dis/CN=example.org" \
-keyout /etc/nginx/ssl/nginx-ecc.key \
-out /etc/nginx/ssl/nginx-ecc.crt
cat <<'EOF' > /etc/nginx/nginx.conf
user www-data;
worker_processes auto;
worker_rlimit_nofile 100000;
error_log /var/log/nginx/error.log crit;
events {
worker_connections 4000;
use epoll;
multi_accept on;
}
http {
open_file_cache max=200000 inactive=20s;
open_file_cache_valid 30s;
open_file_cache_min_uses 2;
open_file_cache_errors on;
access_log off;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
gzip on;
gzip_min_length 10240;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/json application/xml;
gzip_disable msie6;
reset_timedout_connection on;
client_body_timeout 10;
client_max_body_size 100m;
send_timeout 2;
keepalive_timeout 30;
keepalive_requests 100000;
ssl_session_cache shared:SSL:50m;
ssl_session_timeout 1d;
ssl_session_tickets off;
ssl_dhparam /etc/nginx/ssl/dhparam.pem;
ssl_ecdh_curve X25519:P-521:P-384:P-256;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256';
resolver 8.8.8.8 8.8.4.4;
ssl_stapling on;
ssl_stapling_verify on;
ssl_certificate /etc/nginx/ssl/nginx-ecc.crt;
ssl_certificate_key /etc/nginx/ssl/nginx-ecc.key;
ssl_certificate /etc/nginx/ssl/nginx-rsa.crt;
ssl_certificate_key /etc/nginx/ssl/nginx-rsa.key;
add_header X-Frame-Options SAMEORIGIN always;
add_header X-Content-Type-Options nosniff always;
add_header X-XSS-Protection "1; mode=block" always;
add_header Referrer-Policy same-origin always;
# add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload" always;
# add_header Content-Security-Policy "default-src 'self'; script-src 'self' https://ajax.googleapis.com https://cdnjs.com https://code.jquery.com; style-src 'self' https://fonts.googleapis.com; img-src 'self' blob: https:; font-src 'self' https://themes.googleusercontent.com https://fonts.gstatic.com" always;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location ^~ /.well-known/acme-challenge/ {
default_type "text/plain";
root /var/www/letsencrypt;
}
location = /.well-known/acme-challenge/ {
return 404;
}
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name _;
location / {
root /var/www/default;
index index.php index.html index.htm;
try_files $uri $uri/ =404;
}
}
include mime.types;
include conf.d/*.conf;
}
EOF
cat <<'EOF' > /etc/nginx/conf.d/example_server.conf.off
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name csgo.reactiion.net;
if ($http_user_agent ~* "WordPress") {
return 444;
}
root /var/www/reactiion.net/auth;
location / {
index index.php;
try_files $uri $uri/ =404;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
EOF
cat <<'EOF' > /etc/nginx/conf.d/example_proxy_server.conf.off
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name "~^auth\d{0,2}\.vitahook\.pw$";
ssl_certificate /etc/nginx/ssl/test.vitahook.pw-cert.pem;
ssl_certificate_key /etc/nginx/ssl/test.vitahook.pw-key.pem;
location / {
root /var/www/default;
index index.php index.html index.htm;
try_files $uri $uri/ =404;
}
location ~ \.php$ {
try_files $uri =404;
include fastcgi.conf;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
}
location / {
proxy_pass http://localhost:8001;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
EOF
printf -- "ok\n" >&3
printf -- "- Installing php..." >&3
apt-get -yqq install php7.3 \
php7.3-curl \
php7.3-fpm \
php7.3-mysql \
php7.3-dba \
php7.3-mbstring \
php7.3-soap \
php7.3-xml \
php7.3-zip
sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/g" /etc/php/7.3/fpm/php.ini
sed -i "s/post_max_size = 8M/post_max_size = 32M/g" /etc/php/7.3/fpm/php.ini
sed -i "s/upload_max_filesize = 2M/upload_max_filesize = 100M/g" /etc/php/7.3/fpm/php.ini
systemctl restart php7.3-fpm
printf -- "ok\n" >&3
rm /etc/apt/apt.conf.d/local
chown -R www-data /var/www
chgrp -R www-data /var/www
chmod -R g+w /var/www
find /var/www -type d -exec chmod 2775 {} \;
find /var/www -type f -exec chmod ug+rw {} \;
printf -- "- Installing docker and docker-compose"
# remove previous installed docker engine and install the latest
apt remove -y docker docker-engine docker.io
apt install -y docker.io
# enable docker service
systemctl start docker
systemctl enable docker
# install docker compose
curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
# fix permissions "docker: Got permission denied while trying to connect to the Docker daemon socket at ...: connect: permission denied"
usermod -a -G docker $SCRIPT_USERNAME
printf -- "ok\n" >&3
printf -- "- Installing pip, pip3, and python tools..." >&3
pip2 install --upgrade setuptools pip
pip3 install --upgrade setuptools pip
hash -r pip pip2 pip3
apt-get remove -yqq python-pip python3-pip
pip install --upgrade asciinema httpie python-swiftclient python-keystoneclient magic-wormhole
printf -- "ok\n" >&3
printf -- "=> Done!\n\n" >&3