Skip to content

Commit 54bf3e6

Browse files
committed
fix some typos in communication messages
1 parent bd64dab commit 54bf3e6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

bin/v-add-sys-roundcube

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,20 @@ if [ -z "$HOMEDIR" ] || [ -z "$HESTIA_INSTALL_DIR" ]; then
5151
fi
5252

5353
if [ -z "$(echo "$DB_SYSTEM" | grep -w 'mysql')" ]; then
54-
echo "ERROR: Mysql not available. Instalation aborted"
54+
echo "ERROR: Mysql not available. Installation aborted"
5555
exit 2
5656
fi
5757

5858
if [ -d "/usr/share/roundcube" ]; then
59-
echo "ERROR: Install done from atp source unable to continue"
59+
echo "ERROR: Install done from apt source, unable to continue"
6060
exit 2;
6161
fi
6262

6363
# Get current version
6464
if [ -f "/var/lib/roundcube/index.php" ]; then
6565
version=$(cat $RC_INSTALL_DIR/index.php | grep -o -E '[0-9].[0-9].[0-9]+' | head -1);
6666
if [ "$version" == "$rc_v" ]; then
67-
echo "Error: Installed version ($version) is equal as the availble version ($rc_v)"
67+
echo "Error: Installed version ($version) is equal to the available version ($rc_v)"
6868
exit 2;
6969
else
7070
UPDATE="yes"

install/upgrade/manual/migrate_roundcube.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [ ! -d "/usr/share/roundcube/" ]; then
2323
fi
2424

2525

26-
echo "For deleting Roudcube you will need confirm the removal with root password. Password can be found in /usr/local/hestia/conf/mysql.conf"
26+
echo "For deleting Roundcube you will need confirm the removal with root password. Password can be found in /usr/local/hestia/conf/mysql.conf"
2727
read -p "Please enter Y to continue" -n 1 -r
2828
echo # (optional) move to a new line
2929
if [[ $REPLY =~ ^[Yy]$ ]]

install/upgrade/manual/upgrade_multi_php.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
2-
# Update www.conf to the a different version so users can safely deleted older php version.
2+
# Update www.conf to a different version so users can safely delete older php version.
33
# www.conf is used for Roundcube, Rainloop and phpmyadmin
4-
# Removal of the "www.conf" php version will cause issues with Rainloop not working. Current script updates it to the latests version of PHP installed. If that is not wanted use this script
4+
# Removal of the "www.conf" php version will cause issues with Rainloop not working. Current script updates it to the latest version of PHP installed. If that is not wanted use this script
55

66
version=$1
77
if [ ! -x "$(command -v php)" ]; then

0 commit comments

Comments
 (0)