This repository has been archived by the owner on Jan 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
installer.sh
executable file
·475 lines (439 loc) · 16.8 KB
/
installer.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
#!/bin/bash
CHANNEL="stable"
BRANCH="master"
NAME="PocketMine-MP"
BUILD_URL=""
LINUX_32_BUILD="PHP_7.0.3_x86_Linux"
LINUX_64_BUILD="PHP_7.0.3_x86-64_Linux"
#CENTOS_32_BUILD="PHP_5.6.2_x86_CentOS"
#CENTOS_64_BUILD="PHP_5.6.2_x86-64_CentOS"
MAC_32_BUILD="PHP_7.0.3_x86_MacOS"
MAC_64_BUILD="PHP_7.0.3_x86-64_MacOS"
RPI_BUILD="PHP_7.0.6_ARM_Raspbian_hard"
ARMV7_BUILD="PHP_7.0.0RC3_ARMv7"
AND_BUILD="PHP_7.0.0RC3_ARMv7_Android"
IOS_BUILD="PHP_5.5.13_ARMv6_iOS"
update=off
forcecompile=off
alldone=no
checkRoot=on
XDEBUG="off"
alternateurl=off
INSTALL_DIRECTORY="./"
IGNORE_CERT="yes"
while getopts "rxucid:v:t:" opt; do
case $opt in
a)
alternateurl=on
;;
r)
checkRoot=off
;;
x)
XDEBUG="on"
echo "[+] Enabling xdebug"
;;
u)
update=on
;;
c)
forcecompile=on
;;
d)
INSTALL_DIRECTORY="$OPTARG"
;;
i)
IGNORE_CERT="no"
;;
v)
CHANNEL="$OPTARG"
;;
t)
BUILD_URL="$OPTARG"
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
esac
done
#Needed to use aliases
shopt -s expand_aliases
type wget > /dev/null 2>&1
if [ $? -eq 0 ]; then
if [ "$IGNORE_CERT" == "yes" ]; then
alias download_file="wget --no-check-certificate -q -O -"
else
alias download_file="wget -q -O -"
fi
else
type curl >> /dev/null 2>&1
if [ $? -eq 0 ]; then
if [ "$IGNORE_CERT" == "yes" ]; then
alias download_file="curl --insecure --silent --location"
else
alias download_file="curl --silent --location"
fi
else
echo "error, curl or wget not found"
fi
fi
if [ "$checkRoot" == "on" ]; then
if [ "$(id -u)" == "0" ]; then
echo "This script is running as root, this is discouraged."
echo "It is recommended to run it as a normal user as it doesn't need further permissions."
echo "If you want to run it as root, add the -r flag."
exit 1
fi
fi
if [ "$CHANNEL" == "soft" ]; then
NAME="PocketMine-Soft"
fi
ENABLE_GPG="no"
PUBLICKEY_URL="http://cdn.pocketmine.net/pocketmine.asc"
PUBLICKEY_FINGERPRINT="20D377AFC3F7535B3261AA4DCF48E7E52280B75B"
PUBLICKEY_LONGID="${PUBLICKEY_FINGERPRINT: -16}"
GPG_KEYSERVER="pgp.mit.edu"
function check_signature {
echo "[*] Checking signature of $1"
"$GPG_BIN" --keyserver "$GPG_KEYSERVER" --keyserver-options auto-key-retrieve=1 --trusted-key $PUBLICKEY_LONGID --verify "$1.sig" "$1"
if [ $? -eq 0 ]; then
echo "[+] Signature valid and checked!"
else
"$GPG_BIN" --refresh-keys > /dev/null 2>&1
echo "[!] Invalid signature! Please check for file corruption or a wrongly imported public key (signed by $PUBLICKEY_FINGERPRINT)"
exit 1
fi
}
if [[ "$BUILD_URL" != "" && "$CHANNEL" == "custom" ]]; then
BASE_VERSION="custom"
VERSION="custom"
BUILD="unknown"
API_VERSION="unknown"
VERSION_DATE_STRING="unknown"
ENABLE_GPG="no"
VERSION_DOWNLOAD="$BUILD_URL"
else
# VERSION_DATA=$(download_file "http://www.pocketmine.net/api/?channel=$CHANNEL")
VERSION_DATA=$(download_file "https://gist.githubusercontent.com/Intyre/ed7ff1c2e40d79fbe37b/raw/pm-release.json")
VERSION=$(echo "$VERSION_DATA" | grep '"version"' | cut -d ':' -f2- | tr -d ' ",')
BUILD=$(echo "$VERSION_DATA" | grep build | cut -d ':' -f2- | tr -d ' ",')
API_VERSION=$(echo "$VERSION_DATA" | grep api_version | cut -d ':' -f2- | tr -d ' ",')
VERSION_DATE=$(echo "$VERSION_DATA" | grep '"date"' | cut -d ':' -f2- | tr -d ' ",')
VERSION_DOWNLOAD=$(echo "$VERSION_DATA" | grep '"download_url"' | cut -d ':' -f2- | tr -d ' ",')
if [ "$alternateurl" == "on" ]; then
VERSION_DOWNLOAD=$(echo "$VERSION_DATA" | grep '"alternate_download_url"' | cut -d ':' -f2- | tr -d ' ",')
fi
if [ "$(uname -s)" == "Darwin" ]; then
BASE_VERSION=$(echo "$VERSION" | sed -E 's/([A-Za-z0-9_\.]*).*/\1/')
VERSION_DATE_STRING=$(date -j -f "%s" $VERSION_DATE)
else
BASE_VERSION=$(echo "$VERSION" | sed -r 's/([A-Za-z0-9_\.]*).*/\1/')
VERSION_DATE_STRING=$(date --date="@$VERSION_DATE")
fi
GPG_SIGNATURE=$(echo "$VERSION_DATA" | grep '"signature_url"' | cut -d ':' -f2- | tr -d ' ",')
if [ "$GPG_SIGNATURE" != "" ]; then
ENABLE_GPG="yes"
fi
if [ "$VERSION" == "" ]; then
echo "[!] Couldn't get the latest $NAME version"
exit 1
fi
GPG_BIN=""
if [ "$ENABLE_GPG" == "yes" ]; then
type gpg > /dev/null 2>&1
if [ $? -eq 0 ]; then
GPG_BIN="gpg"
else
type gpg2 > /dev/null 2>&1
if [ $? -eq 0 ]; then
GPG_BIN="gpg2"
fi
fi
if [ "$GPG_BIN" != "" ]; then
gpg --fingerprint $PUBLICKEY_FINGERPRINT > /dev/null 2>&1
if [ $? -ne 0 ]; then
download_file $PUBLICKEY_URL | gpg --trusted-key $PUBLICKEY_LONGID --import
gpg --fingerprint $PUBLICKEY_FINGERPRINT > /dev/null 2>&1
if [ $? -ne 0 ]; then
gpg --trusted-key $PUBLICKEY_LONGID --keyserver "$GPG_KEYSERVER" --recv-key $PUBLICKEY_FINGERPRINT
fi
fi
else
ENABLE_GPG="no"
fi
fi
fi
echo "[*] Found $NAME $BASE_VERSION (build $BUILD) using API $API_VERSION"
echo "[*] This $CHANNEL build was released on $VERSION_DATE_STRING"
if [ "$ENABLE_GPG" == "yes" ]; then
echo "[+] The build was signed, will check signature"
elif [ "$GPG_SIGNATURE" == "" ]; then
if [[ "$CHANNEL" == "beta" ]] || [[ "$CHANNEL" == "stable" ]]; then
echo "[-] This channel should have a signature, none found"
fi
fi
echo "[*] Installing/updating $NAME on directory $INSTALL_DIRECTORY"
mkdir -m 0777 "$INSTALL_DIRECTORY" 2> /dev/null
cd "$INSTALL_DIRECTORY"
echo "[1/3] Cleaning..."
rm -f "$NAME.phar"
rm -f README.md
rm -f CONTRIBUTING.md
rm -f LICENSE
rm -f start.sh
rm -f start.bat
#Old installations
rm -f PocketMine-MP.php
rm -r -f src/
echo -n "[2/3] Downloading $NAME $VERSION phar..."
set +e
download_file "$VERSION_DOWNLOAD" > "$NAME.phar"
if ! [ -s "$NAME.phar" ] || [ "$(head -n 1 $NAME.phar)" == '<!DOCTYPE html>' ]; then
rm "$NAME.phar" 2> /dev/null
echo " failed!"
echo "[!] Couldn't download $NAME automatically from $VERSION_DOWNLOAD"
exit 1
else
if [ "$CHANNEL" == "soft" ]; then
download_file "https://raw.githubusercontent.com/PocketMine/PocketMine-Soft/${BRANCH}/resources/start.sh" > start.sh
else
download_file "https://raw.githubusercontent.com/PocketMine/PocketMine-MP/${BRANCH}/start.sh" > start.sh
fi
download_file "https://raw.githubusercontent.com/PocketMine/PocketMine-MP/${BRANCH}/LICENSE" > LICENSE
download_file "https://raw.githubusercontent.com/PocketMine/PocketMine-MP/${BRANCH}/README.md" > README.md
download_file "https://raw.githubusercontent.com/PocketMine/PocketMine-MP/${BRANCH}/CONTRIBUTING.md" > CONTRIBUTING.md
download_file "https://raw.githubusercontent.com/PocketMine/php-build-scripts/${BRANCH}/compile.sh" > compile.sh
fi
chmod +x compile.sh
chmod +x start.sh
echo " done!"
if [ "$ENABLE_GPG" == "yes" ]; then
download_file "$GPG_SIGNATURE" > "$NAME.phar.sig"
check_signature "$NAME.phar"
fi
if [ "$update" == "on" ]; then
echo "[3/3] Skipping PHP recompilation due to user request"
else
echo -n "[3/3] Obtaining PHP:"
echo " detecting if build is available..."
if [ "$forcecompile" == "off" ] && [ "$(uname -s)" == "Darwin" ]; then
set +e
UNAME_M=$(uname -m)
IS_IOS=$(expr match $UNAME_M 'iP[a-zA-Z0-9,]*' 2> /dev/null)
set -e
if [[ "$IS_IOS" -gt 0 ]]; then
rm -r -f bin/ >> /dev/null 2>&1
echo -n "[3/3] iOS PHP build available, downloading $IOS_BUILD.tar.gz..."
download_file "https://dl.bintray.com/pocketmine/PocketMine/$IOS_BUILD.tar.gz" | tar -zx > /dev/null 2>&1
chmod +x ./bin/php7/bin/*
echo -n " checking..."
if [ "$(./bin/php7/bin/php -r 'echo 1;' 2>/dev/null)" == "1" ]; then
echo -n " regenerating php.ini..."
TIMEZONE=$(date +%Z)
echo "" > "./bin/php7/bin/php.ini"
#UOPZ_PATH="$(find $(pwd) -name uopz.so)"
#echo "zend_extension=\"$UOPZ_PATH\"" >> "./bin/php7/bin/php.ini"
echo "date.timezone=$TIMEZONE" >> "./bin/php7/bin/php.ini"
echo "short_open_tag=0" >> "./bin/php7/bin/php.ini"
echo "asp_tags=0" >> "./bin/php7/bin/php.ini"
echo "phar.readonly=0" >> "./bin/php7/bin/php.ini"
echo "phar.require_hash=1" >> "./bin/php7/bin/php.ini"
echo "zend.assertions=-1" >> "./bin/php7/bin/php.ini"
echo " done"
alldone=yes
else
echo " invalid build detected"
fi
else
rm -r -f bin/ >> /dev/null 2>&1
if [ `getconf LONG_BIT` == "64" ]; then
echo -n "[3/3] MacOS 64-bit PHP build available, downloading $MAC_64_BUILD.tar.gz..."
MAC_BUILD="$MAC_64_BUILD"
else
echo -n "[3/3] MacOS 32-bit PHP build available, downloading $MAC_32_BUILD.tar.gz..."
MAC_BUILD="$MAC_32_BUILD"
fi
download_file "https://dl.bintray.com/pocketmine/PocketMine/$MAC_BUILD.tar.gz" | tar -zx > /dev/null 2>&1
chmod +x ./bin/php7/bin/*
echo -n " checking..."
if [ "$(./bin/php7/bin/php -r 'echo 1;' 2>/dev/null)" == "1" ]; then
echo -n " regenerating php.ini..."
TIMEZONE=$(date +%Z)
#OPCACHE_PATH="$(find $(pwd) -name opcache.so)"
XDEBUG_PATH="$(find $(pwd) -name xdebug.so)"
echo "" > "./bin/php7/bin/php.ini"
#UOPZ_PATH="$(find $(pwd) -name uopz.so)"
#echo "zend_extension=\"$UOPZ_PATH\"" >> "./bin/php7/bin/php.ini"
#echo "zend_extension=\"$OPCACHE_PATH\"" >> "./bin/php7/bin/php.ini"
if [ "$XDEBUG" == "on" ]; then
echo "zend_extension=\"$XDEBUG_PATH\"" >> "./bin/php7/bin/php.ini"
fi
echo "opcache.enable=1" >> "./bin/php7/bin/php.ini"
echo "opcache.enable_cli=1" >> "./bin/php7/bin/php.ini"
echo "opcache.save_comments=1" >> "./bin/php7/bin/php.ini"
echo "opcache.load_comments=1" >> "./bin/php7/bin/php.ini"
echo "opcache.fast_shutdown=0" >> "./bin/php7/bin/php.ini"
echo "opcache.max_accelerated_files=4096" >> "./bin/php7/bin/php.ini"
echo "opcache.interned_strings_buffer=8" >> "./bin/php7/bin/php.ini"
echo "opcache.memory_consumption=128" >> "./bin/php7/bin/php.ini"
echo "opcache.optimization_level=0xffffffff" >> "./bin/php7/bin/php.ini"
echo "date.timezone=$TIMEZONE" >> "./bin/php7/bin/php.ini"
echo "short_open_tag=0" >> "./bin/php7/bin/php.ini"
echo "asp_tags=0" >> "./bin/php7/bin/php.ini"
echo "phar.readonly=0" >> "./bin/php7/bin/php.ini"
echo "phar.require_hash=1" >> "./bin/php7/bin/php.ini"
echo "zend.assertions=-1" >> "./bin/php7/bin/php.ini"
echo " done"
alldone=yes
else
echo " invalid build detected"
fi
fi
else
grep -q BCM270[89] /proc/cpuinfo > /dev/null 2>&1
IS_RPI=$?
grep -q sun7i /proc/cpuinfo > /dev/null 2>&1
IS_BPI=$?
uname -m | grep -q armv7 > /dev/null 2>&1
IS_ARMV7=$?
if ([ "$IS_RPI" -eq 0 ] || [ "$IS_BPI" -eq 0 ]) && [ "$forcecompile" == "off" ]; then
rm -r -f bin/ >> /dev/null 2>&1
echo -n "[3/3] Raspberry Pi PHP build available, downloading $RPI_BUILD.tar.gz..."
download_file "https://dl.bintray.com/pocketmine/PocketMine/$RPI_BUILD.tar.gz" | tar -zx > /dev/null 2>&1
chmod +x ./bin/php7/bin/*
echo -n " checking..."
if [ "$(./bin/php7/bin/php -r 'echo 1;' 2>/dev/null)" == "1" ]; then
echo -n " regenerating php.ini..."
TIMEZONE=$(date +%Z)
#OPCACHE_PATH="$(find $(pwd) -name opcache.so)"
if [ "$XDEBUG" == "on" ]; then
echo "zend_extension=\"$XDEBUG_PATH\"" >> "./bin/php7/bin/php.ini"
fi
echo "" > "./bin/php7/bin/php.ini"
#UOPZ_PATH="$(find $(pwd) -name uopz.so)"
#echo "zend_extension=\"$UOPZ_PATH\"" >> "./bin/php7/bin/php.ini"
#echo "zend_extension=\"$OPCACHE_PATH\"" >> "./bin/php7/bin/php.ini"
if [ "$XDEBUG" == "on" ]; then
echo "zend_extension=\"$XDEBUG_PATH\"" >> "./bin/php7/bin/php.ini"
fi
echo "opcache.enable=1" >> "./bin/php7/bin/php.ini"
echo "opcache.enable_cli=1" >> "./bin/php7/bin/php.ini"
echo "opcache.save_comments=1" >> "./bin/php7/bin/php.ini"
echo "opcache.load_comments=1" >> "./bin/php7/bin/php.ini"
echo "opcache.fast_shutdown=1" >> "./bin/php7/bin/php.ini"
echo "opcache.max_accelerated_files=4096" >> "./bin/php7/bin/php.ini"
echo "opcache.interned_strings_buffer=8" >> "./bin/php7/bin/php.ini"
echo "opcache.memory_consumption=128" >> "./bin/php7/bin/php.ini"
echo "opcache.optimization_level=0xffffffff" >> "./bin/php7/bin/php.ini"
echo "date.timezone=$TIMEZONE" >> "./bin/php7/bin/php.ini"
echo "short_open_tag=0" >> "./bin/php7/bin/php.ini"
echo "asp_tags=0" >> "./bin/php7/bin/php.ini"
echo "phar.readonly=0" >> "./bin/php7/bin/php.ini"
echo "phar.require_hash=1" >> "./bin/php7/bin/php.ini"
echo "zend.assertions=-1" >> "./bin/php7/bin/php.ini"
echo " done"
alldone=yes
else
echo " invalid build detected"
fi
elif [ "$IS_ARMV7" -eq 0 ] && [ "$forcecompile" == "off" ]; then
rm -r -f bin/ >> /dev/null 2>&1
echo -n "[3/3] ARMv7 PHP build available, downloading $ARMV7_BUILD.tar.gz..."
download_file "https://dl.bintray.com/pocketmine/PocketMine/$ARMV7_BUILD.tar.gz" | tar -zx > /dev/null 2>&1
chmod +x ./bin/php7/bin/*
echo -n " checking..."
if [ "$(./bin/php7/bin/php -r 'echo 1;' 2>/dev/null)" == "1" ]; then
echo -n " regenerating php.ini..."
#OPCACHE_PATH="$(find $(pwd) -name opcache.so)"
XDEBUG_PATH="$(find $(pwd) -name xdebug.so)"
echo "" > "./bin/php7/bin/php.ini"
#UOPZ_PATH="$(find $(pwd) -name uopz.so)"
#echo "zend_extension=\"$UOPZ_PATH\"" >> "./bin/php7/bin/php.ini"
#echo "zend_extension=\"$OPCACHE_PATH\"" >> "./bin/php7/bin/php.ini"
if [ "$XDEBUG" == "on" ]; then
echo "zend_extension=\"$XDEBUG_PATH\"" >> "./bin/php7/bin/php.ini"
fi
echo "opcache.enable=1" >> "./bin/php7/bin/php.ini"
echo "opcache.enable_cli=1" >> "./bin/php7/bin/php.ini"
echo "opcache.save_comments=1" >> "./bin/php7/bin/php.ini"
echo "opcache.load_comments=1" >> "./bin/php7/bin/php.ini"
echo "opcache.fast_shutdown=1" >> "./bin/php7/bin/php.ini"
echo "opcache.max_accelerated_files=4096" >> "./bin/php7/bin/php.ini"
echo "opcache.interned_strings_buffer=8" >> "./bin/php7/bin/php.ini"
echo "opcache.memory_consumption=128" >> "./bin/php7/bin/php.ini"
echo "opcache.optimization_level=0xffffffff" >> "./bin/php7/bin/php.ini"
echo "date.timezone=$TIMEZONE" >> "./bin/php7/bin/php.ini"
echo "short_open_tag=0" >> "./bin/php7/bin/php.ini"
echo "asp_tags=0" >> "./bin/php7/bin/php.ini"
echo "phar.readonly=0" >> "./bin/php7/bin/php.ini"
echo "phar.require_hash=1" >> "./bin/php7/bin/php.ini"
echo "zend.assertions=-1" >> "./bin/php7/bin/php.ini"
echo " done"
alldone=yes
else
echo " invalid build detected"
fi
elif [ "$forcecompile" == "off" ] && [ "$(uname -s)" == "Linux" ]; then
rm -r -f bin/ >> /dev/null 2>&1
#if [[ "$(cat /etc/redhat-release 2>/dev/null)" == *CentOS* ]]; then
#if [ `getconf LONG_BIT` = "64" ]; then
# echo -n "[3/3] CentOS 64-bit PHP build available, downloading $CENTOS_64_BUILD.tar.gz..."
# LINUX_BUILD="$CENTOS_64_BUILD"
#else
# echo -n "[3/3] CentOS 32-bit PHP build available, downloading $CENTOS_32_BUILD.tar.gz..."
# LINUX_BUILD="$CENTOS_32_BUILD"
#fi
#else
if [ `getconf LONG_BIT` = "64" ]; then
echo -n "[3/3] Linux 64-bit PHP build available, downloading $LINUX_64_BUILD.tar.gz..."
LINUX_BUILD="$LINUX_64_BUILD"
else
echo -n "[3/3] Linux 32-bit PHP build available, downloading $LINUX_32_BUILD.tar.gz..."
LINUX_BUILD="$LINUX_32_BUILD"
fi
#fi
download_file "https://dl.bintray.com/pocketmine/PocketMine/$LINUX_BUILD.tar.gz" | tar -zx > /dev/null 2>&1
chmod +x ./bin/php7/bin/*
echo -n " checking..."
if [ "$(./bin/php7/bin/php -r 'echo 1;' 2>/dev/null)" == "1" ]; then
echo -n " regenerating php.ini..."
#OPCACHE_PATH="$(find $(pwd) -name opcache.so)"
XDEBUG_PATH="$(find $(pwd) -name xdebug.so)"
echo "" > "./bin/php7/bin/php.ini"
#UOPZ_PATH="$(find $(pwd) -name uopz.so)"
#echo "zend_extension=\"$UOPZ_PATH\"" >> "./bin/php7/bin/php.ini"
#echo "zend_extension=\"$OPCACHE_PATH\"" >> "./bin/php7/bin/php.ini"
if [ "$XDEBUG" == "on" ]; then
echo "zend_extension=\"$XDEBUG_PATH\"" >> "./bin/php7/bin/php.ini"
fi
echo "opcache.enable=1" >> "./bin/php7/bin/php.ini"
echo "opcache.enable_cli=1" >> "./bin/php7/bin/php.ini"
echo "opcache.save_comments=1" >> "./bin/php7/bin/php.ini"
echo "opcache.fast_shutdown=1" >> "./bin/php7/bin/php.ini"
echo "opcache.max_accelerated_files=4096" >> "./bin/php7/bin/php.ini"
echo "opcache.interned_strings_buffer=8" >> "./bin/php7/bin/php.ini"
echo "opcache.memory_consumption=128" >> "./bin/php7/bin/php.ini"
echo "opcache.optimization_level=0xffffffff" >> "./bin/php7/bin/php.ini"
echo "date.timezone=$TIMEZONE" >> "./bin/php7/bin/php.ini"
echo "short_open_tag=0" >> "./bin/php7/bin/php.ini"
echo "asp_tags=0" >> "./bin/php7/bin/php.ini"
echo "phar.readonly=0" >> "./bin/php7/bin/php.ini"
echo "phar.require_hash=1" >> "./bin/php7/bin/php.ini"
echo "zend.assertions=-1" >> "./bin/php7/bin/php.ini"
echo " done"
alldone=yes
else
echo " invalid build detected, please upgrade your OS"
fi
fi
if [ "$alldone" == "no" ]; then
set -e
echo "[3/3] no build found, compiling PHP automatically"
exec "./compile.sh"
fi
fi
fi
rm compile.sh
echo "[*] Everything done! Run ./start.sh to start $NAME"
exit 0