forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.0.4.sh
More file actions
22 lines (19 loc) · 762 Bytes
/
Copy path1.0.4.sh
File metadata and controls
22 lines (19 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# Hestia Control Panel upgrade script for target version 1.0.4
#######################################################################################
####### Place additional commands below. #######
#######################################################################################
# Add php-imagick package to existing version...
php_versions=$(ls /etc/php/*/fpm -d 2>/dev/null |wc -l)
if [ "$php_versions" -gt 1 ]; then
echo "(*) Install PHP Imageqick..."
software="php-imagick"
for v in $(ls /etc/php/); do
if [ ! -d "/etc/php/$v/fpm/pool.d/" ]; then
continue
fi
software="$software php$v-imagick"
done
fi
apt -qq update
apt -qq install $software -y