forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhst_autocompile.sh
More file actions
executable file
·486 lines (401 loc) · 14.4 KB
/
hst_autocompile.sh
File metadata and controls
executable file
·486 lines (401 loc) · 14.4 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
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
#!/bin/bash
# set -e
# Autocompile Script for HestiaCP deb Files.
# For building from local source folder use "~localsrc" keyword as hesia branch name,
# and the script will not try to download the arhive from github, since '~' char is
# not accepted in branch name.
# -> ./hst_autocompile.sh --hestia '~localsrc' 'n'
# Clear previous screen output
clear
# Define download function
download_file() {
local url=$1
local destination=$2
local force=$3
# Default destination is the curent working directory
local dstopt=""
if [ ! -z "$(echo "$url" | grep -E "\.(gz|gzip|bz2|zip|xz)$")" ]; then
# When an archive file is downloaded it will be first saved localy
dstopt="--directory-prefix=$ARCHIVE_DIR"
local is_archive="true"
local filename="${url##*/}"
if [ -z "$filename" ]; then
>&2 echo "[!] No filename was found in url, exiting ($url)"
exit 1
fi
if [ ! -z "$force" ] && [ -f "$ARCHIVE_DIR/$filename" ]; then
rm -f $ARCHIVE_DIR/$filename
fi
elif [ ! -z "$destination" ]; then
# Plain files will be written to specified location
dstopt="-O $destination"
fi
# check for corrupted archive
if [ -f "$ARCHIVE_DIR/$filename" ] && [ "$is_archive" = "true" ]; then
tar -tzf "$ARCHIVE_DIR/$filename" > /dev/null 2>&1
if [ $? -ne 0 ]; then
>&2 echo "[!] Archive $ARCHIVE_DIR/$filename is corrupted, redownloading"
rm -f $ARCHIVE_DIR/$filename
fi
fi
if [ ! -f "$ARCHIVE_DIR/$filename" ]; then
wget $url -q $dstopt --show-progress --progress=bar:force --limit-rate=3m
fi
if [ ! -z "$destination" ] && [ "$is_archive" = "true" ]; then
if [ "$destination" = "-" ]; then
cat "$ARCHIVE_DIR/$filename"
elif [ -d "$(dirname $destination)" ]; then
cp "$ARCHIVE_DIR/$filename" "$destination"
fi
fi
}
# Set compiling directory
BUILD_DIR='/tmp/hestiacp-src/'
DEB_DIR="$BUILD_DIR/debs/"
INSTALL_DIR='/usr/local/hestia'
SRC_DIR="$(cd "$(dirname "$0")/.." && pwd)"
ARCHIVE_DIR="$SRC_DIR/src/archive/"
# Set command variables
if [ ! -z "$2" ]; then
branch=$2
else
echo -n "Please enter the name of the branch to build from (e.g. master): "
read branch
fi
# Set Version for compiling
if [ -f "$SRC_DIR/src/deb/hestia/control" ] && [ "$branch" = '~localsrc' ]; then
BUILD_VER=$(cat $SRC_DIR/src/deb/hestia/control |grep "Version:" |cut -d' ' -f2)
else
BUILD_VER=$(curl -s https://raw.githubusercontent.com/hestiacp/hestiacp/$branch/src/deb/hestia/control |grep "Version:" |cut -d' ' -f2)
fi
if [ -z "$BUILD_VER" ]; then
echo "Error: Branch invalid, could not detect version"
exit 1
fi
BUILD_ARCH='amd64'
HESTIA_V="${BUILD_VER}_${BUILD_ARCH}"
NGINX_V=$(curl -s https://raw.githubusercontent.com/hestiacp/hestiacp/$branch/src/deb/nginx/control |grep "Version:" |cut -d' ' -f2)
OPENSSL_V='1.1.1d'
PCRE_V='8.44'
ZLIB_V='1.2.11'
PHP_V=$(curl -s https://raw.githubusercontent.com/hestiacp/hestiacp/$branch/src/deb/php/control |grep "Version:" |cut -d' ' -f2)
# Create build directories
rm -rf $BUILD_DIR
mkdir -p $DEB_DIR
mkdir -p $ARCHIVE_DIR
# Set package dependencies for compiling
SOFTWARE='build-essential libxml2-dev libz-dev libcurl4-gnutls-dev unzip openssl libssl-dev pkg-config'
# Define a timestamp function
timestamp() {
date +%s
}
if [ ! -z "$3" ]; then
install=$3
else
echo -n 'Would you like to install the compiled packages? [y/N] '
read install
fi
# Install needed software
echo "Updating system APT repositories..."
apt-get -qq update > /dev/null 2>&1
echo "Installing dependencies for compilation..."
apt-get -qq install -y $SOFTWARE > /dev/null 2>&1
# Fix for Debian PHP Envroiment
if [ ! -e /usr/local/include/curl ]; then
ln -s /usr/include/x86_64-linux-gnu/curl /usr/local/include/curl
fi
# Get system cpu cores
NUM_CPUS=$(grep "^cpu cores" /proc/cpuinfo | uniq | awk '{print $4}')
# Set packages to compile
for arg; do
case "$1" in
--all)
NGINX_B='true'
PHP_B='true'
HESTIA_B='true'
;;
--nginx)
NGINX_B='true'
;;
--php)
PHP_B='true'
;;
--hestia)
HESTIA_B='true'
;;
*)
NOARGUMENT='true'
;;
esac
done
if [ $(echo "$branch" | grep '^~localsrc') ]; then
branch=$(echo "$branch" | sed 's/^~//');
use_src_folder='true'
fi
if [[ $# -eq 0 ]] ; then
echo "ERROR: Invalid compilation flag specified. Valid flags include:"
echo "--all: Build all hestia packages."
echo "--hestia: Build only the Control Panel package."
echo "--nginx: Build only the backend nginx engine package."
echo "--php: Build only the backend php engine package"
echo ""
echo "For automated builds and installatioms, you may specify the branch"
echo "after one of the above flags. To install the packages, specify 'Y'"
echo "following the branch name."
echo ""
echo "Example: bash hst_autocompile.sh --hestia develop Y"
echo "This would install a Hestia Control Panel package compiled with the"
echo "develop branch code."
exit 1
fi
# Set git repository raw path
GIT_REP='https://raw.githubusercontent.com/hestiacp/hestiacp/'$branch'/src/deb'
# Generate Links for sourcecode
HESTIA_ARCHIVE_LINK='https://github.com/hestiacp/hestiacp/archive/'$branch'.tar.gz'
NGINX='https://nginx.org/download/nginx-'$NGINX_V'.tar.gz'
OPENSSL='https://www.openssl.org/source/openssl-'$OPENSSL_V'.tar.gz'
PCRE='https://ftp.pcre.org/pub/pcre/pcre-'$PCRE_V'.tar.gz'
ZLIB='https://www.zlib.net/zlib-'$ZLIB_V'.tar.gz'
PHP='http://de2.php.net/distributions/php-'$PHP_V'.tar.gz'
# Forward slashes in branchname are replaced with dashes to match foldername in github archive.
branch=$(echo "$branch" |sed 's/\//-/g');
#################################################################################
#
# Building hestia-nginx
#
#################################################################################
if [ "$NGINX_B" = true ] ; then
echo "Building hestia-nginx package..."
# Change to build directory
cd $BUILD_DIR
# Check if target directory exist
if [ -d $BUILD_DIR/hestia-nginx_$NGINX_V ]; then
#mv $BUILD_DIR/hestia-nginx_$NGINX_V $BUILD_DIR/hestia-nginx_$NGINX_V-$(timestamp)
rm -r $BUILD_DIR/hestia-nginx_$NGINX_V
fi
# Create directory
mkdir $BUILD_DIR/hestia-nginx_$NGINX_V
# Download and unpack source files
download_file $NGINX '-' | tar xz
download_file $OPENSSL '-' | tar xz
download_file $PCRE '-' | tar xz
download_file $ZLIB '-' | tar xz
# Change to nginx directory
cd nginx-$NGINX_V
# configure nginx
./configure --prefix=/usr/local/hestia/nginx \
--with-http_ssl_module \
--with-openssl=../openssl-$OPENSSL_V \
--with-openssl-opt=enable-ec_nistp_64_gcc_128 \
--with-openssl-opt=no-nextprotoneg \
--with-openssl-opt=no-weak-ssl-ciphers \
--with-openssl-opt=no-ssl3 \
--with-pcre=../pcre-$PCRE_V \
--with-pcre-jit \
--with-zlib=../zlib-$ZLIB_V
# Check install directory and remove if exists
if [ -d "$BUILD_DIR$INSTALL_DIR" ]; then
rm -r "$BUILD_DIR$INSTALL_DIR"
fi
# Copy local hestia source files
if [ ! -z "$use_src_folder" ] && [ -d $SRC_DIR ]; then
cp -rf "$SRC_DIR/" $BUILD_DIR/hestiacp-$branch
fi
# Create the files and install them
make -j $NUM_CPUS && make DESTDIR=$BUILD_DIR install
# Cleare up unused files
cd $BUILD_DIR
rm -r nginx-$NGINX_V openssl-$OPENSSL_V pcre-$PCRE_V zlib-$ZLIB_V
# Prepare Deb Package Folder Structure
cd hestia-nginx_$NGINX_V/
mkdir -p usr/local/hestia etc/init.d DEBIAN
# Download control, postinst and postrm files
cd DEBIAN
if [ -z "$use_src_folder" ]; then
download_file $GIT_REP/nginx/control
download_file $GIT_REP/nginx/copyright
download_file $GIT_REP/nginx/postinst
download_file $GIT_REP/nginx/postrm
else
cp $BUILD_DIR/hestiacp-$branch/src/deb/nginx/control ./
cp $BUILD_DIR/hestiacp-$branch/src/deb/nginx/copyright ./
cp $BUILD_DIR/hestiacp-$branch/src/deb/nginx/postinst ./
cp $BUILD_DIR/hestiacp-$branch/src/deb/nginx/postrm ./
fi
# Set permission
chmod +x postinst postrm
# Move nginx directory
cd ..
mv $BUILD_DIR/usr/local/hestia/nginx usr/local/hestia/
# Get Service File
cd etc/init.d
if [ -z "$use_src_folder" ]; then
download_file $GIT_REP/nginx/hestia
else
cp $BUILD_DIR/hestiacp-$branch/src/deb/nginx/hestia ./
fi
chmod +x hestia
# Get nginx.conf
cd ../../
rm usr/local/hestia/nginx/conf/nginx.conf
if [ -z "$use_src_folder" ]; then
download_file $GIT_REP/nginx/nginx.conf "usr/local/hestia/nginx/conf/nginx.conf"
else
cp $BUILD_DIR/hestiacp-$branch/src/deb/nginx/nginx.conf "usr/local/hestia/nginx/conf/nginx.conf"
fi
# copy binary
cp usr/local/hestia/nginx/sbin/nginx usr/local/hestia/nginx/sbin/hestia-nginx
# change permission and build the package
cd $BUILD_DIR
chown -R root:root hestia-nginx_$NGINX_V
dpkg-deb --build hestia-nginx_$NGINX_V
mv *.deb $DEB_DIR
# clear up the source folder
rm -r hestia-nginx_$NGINX_V
rm -rf usr/
if [ ! -z "$use_src_folder" ] && [ -d $$BUILD_DIR/hestiacp-$branch ]; then
rm -r $BUILD_DIR/hestiacp-$branch
fi
fi
#################################################################################
#
# Building hestia-php
#
#################################################################################
if [ "$PHP_B" = true ] ; then
echo "Building hestia-php package..."
# Change to build directory
cd $BUILD_DIR
# Check if target directory exist
if [ -d $BUILD_DIR/hestia-php_$PHP_V ]; then
#mv $BUILD_DIR/hestia-php_$PHP_V $BUILD_DIR/hestia-php_$PHP_V-$(timestamp)
rm -r $BUILD_DIR/hestia-php_$PHP_V
fi
# Create directory
mkdir ${BUILD_DIR}/hestia-php_$PHP_V
# Download and unpack source files
download_file $PHP '-' | tar xz
# Change to php directory
cd php-$PHP_V
# Configure PHP
./configure --prefix=/usr/local/hestia/php \
--enable-fpm \
--with-fpm-user=admin \
--with-fpm-group=admin \
--with-libdir=lib/x86_64-linux-gnu \
--with-mysqli \
--with-curl \
--enable-mbstring
# Create the files and install them
make -j $NUM_CPUS && make INSTALL_ROOT=$BUILD_DIR install
# Copy local hestia source files
if [ ! -z "$use_src_folder" ] && [ -d $SRC_DIR ]; then
cp -rf "$SRC_DIR/" $BUILD_DIR/hestiacp-$branch
fi
# Cleare up unused files
cd $BUILD_DIR
rm -r php-$PHP_V
# Prepare Deb Package Folder Structure
cd hestia-php_$PHP_V/
mkdir -p usr/local/hestia DEBIAN
# Download control, postinst and postrm files
cd DEBIAN
if [ -z "$use_src_folder" ]; then
download_file $GIT_REP/php/control
download_file $GIT_REP/php/copyright
else
cp $BUILD_DIR/hestiacp-$branch/src/deb/php/control ./
cp $BUILD_DIR/hestiacp-$branch/src/deb/php/copyright ./
fi
# Move php directory
cd ..
mv ${BUILD_DIR}/usr/local/hestia/php usr/local/hestia/
if [ -z "$use_src_folder" ]; then
# Get php-fpm.conf
download_file "$GIT_REP/php/php-fpm.conf" "usr/local/hestia/php/etc/php-fpm.conf"
# Get php.ini
download_file "$GIT_REP/php/php.ini" "usr/local/hestia/php/lib/php.ini"
else
cp $BUILD_DIR/hestiacp-$branch/src/deb/php/php-fpm.conf "usr/local/hestia/php/etc/php-fpm.conf"
cp $BUILD_DIR/hestiacp-$branch/src/deb/php/php.ini "usr/local/hestia/php/lib/php.ini"
fi
# copy binary
cp usr/local/hestia/php/sbin/php-fpm usr/local/hestia/php/sbin/hestia-php
# change permission and build the package
cd $BUILD_DIR
chown -R root:root hestia-php_$PHP_V
dpkg-deb --build hestia-php_$PHP_V
mv *.deb $DEB_DIR
# clear up the source folder
rm -r hestia-php_$PHP_V
rm -rf usr/
if [ ! -z "$use_src_folder" ] && [ -d $$BUILD_DIR/hestiacp-$branch ]; then
rm -r $BUILD_DIR/hestiacp-$branch
fi
fi
#################################################################################
#
# Building hestia
#
#################################################################################
if [ "$HESTIA_B" = true ] ; then
echo "Building Hestia Control Panel package..."
# Change to build directory
cd $BUILD_DIR
# Check if target directory exist
if [ -d $BUILD_DIR/hestia_$HESTIA_V ]; then
#mv $BUILD_DIR/hestia_$HESTIA_V $BUILD_DIR/hestia_$HESTIA_V-$(timestamp)
rm -r $BUILD_DIR/hestia_$HESTIA_V
fi
# Create directory
mkdir $BUILD_DIR/hestia_$HESTIA_V
# Download and unpack source files
if [ -z "$use_src_folder" ]; then
download_file $HESTIA_ARCHIVE_LINK '-' 'fresh' | tar xz
elif [ -d $SRC_DIR ]; then
cp -rf "$SRC_DIR/" $BUILD_DIR/hestiacp-$branch
fi
# Prepare Deb Package Folder Structure
cd hestia_$HESTIA_V/
mkdir -p usr/local/hestia DEBIAN
# Download control, postinst and postrm files
cd DEBIAN
if [ -z "$use_src_folder" ]; then
download_file $GIT_REP/hestia/control
download_file $GIT_REP/hestia/copyright
download_file $GIT_REP/hestia/postinst
else
cp $BUILD_DIR/hestiacp-$branch/src/deb/hestia/control ./
cp $BUILD_DIR/hestiacp-$branch/src/deb/hestia/copyright ./
cp $BUILD_DIR/hestiacp-$branch/src/deb/hestia/postinst ./
fi
# Set permission
chmod +x postinst
# Move needed directories
cd $BUILD_DIR/hestiacp-$branch
mv bin func install web ../hestia_$HESTIA_V/usr/local/hestia/
# Set permission
cd ../hestia_$HESTIA_V/usr/local/hestia/bin
chmod +x *
# change permission and build the package
cd $BUILD_DIR
chown -R root:root hestia_$HESTIA_V
dpkg-deb --build hestia_$HESTIA_V
mv *.deb $DEB_DIR
# clear up the source folder
rm -r hestia_$HESTIA_V
rm -rf hestiacp-$branch
fi
#################################################################################
#
# Install Packages
#
#################################################################################
if [ "$install" = 'yes' ] || [ "$install" = 'y' ]; then
echo "Installing packages..."
for i in $DEB_DIR/*.deb; do
# Install all available packages
dpkg -i $i
done
unset $answer
fi