Skip to content

Commit 055f44b

Browse files
tamas36jaapmarcus
andauthored
Update hst-install-debian.sh (hestiacp#2466)
* Update hst-install-debian.sh * Create 1.5.11.sh * Update 1.5.11.sh Co-authored-by: Jaap Marcus <9754650+jaapmarcus@users.noreply.github.com>
1 parent 0e00fdd commit 055f44b

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

install/hst-install-debian.sh

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1898,14 +1898,6 @@ fi
18981898
# Configure IP #
18991899
#----------------------------------------------------------#
19001900

1901-
# Roundcube permissions fix
1902-
if [ "$exim" = 'yes' ] && [ "$mysql" = 'yes' ]; then
1903-
if [ ! -d "/var/log/roundcube" ]; then
1904-
mkdir /var/log/roundcube
1905-
fi
1906-
chown admin:admin /var/log/roundcube
1907-
fi
1908-
19091901
# Configuring system IPs
19101902
echo "[ * ] Configuring System IP..."
19111903
$HESTIA/bin/v-update-sys-ip > /dev/null 2>&1

install/upgrade/versions/1.5.11.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
3+
# Hestia Control Panel upgrade script for target version 1.5.11
4+
5+
#######################################################################################
6+
####### Place additional commands below. #######
7+
#######################################################################################
8+
####### Pass through information to the end user in case of a issue or problem #######
9+
####### #######
10+
####### Use add_upgrade_message "My message here" to include a message #######
11+
####### in the upgrade notification email. Example: #######
12+
####### #######
13+
####### add_upgrade_message "My message here" #######
14+
####### #######
15+
####### You can use \n within the string to create new lines. #######
16+
#######################################################################################
17+
18+
# Fix Roundcube logdir permission
19+
20+
if [ -d "/var/log/roundcube" ]; then
21+
chown www-data:www-data /var/log/roundcube
22+
fi

0 commit comments

Comments
 (0)