File tree Expand file tree Collapse file tree 2 files changed +22
-8
lines changed
Expand file tree Collapse file tree 2 files changed +22
-8
lines changed Original file line number Diff line number Diff 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
19101902echo " [ * ] Configuring System IP..."
19111903$HESTIA /bin/v-update-sys-ip > /dev/null 2>&1
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments