We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e24a2 commit c8d5e32Copy full SHA for c8d5e32
upd/update-debian8-v16-to-v17.sh
@@ -11,6 +11,22 @@ servername=$(hostname -f)
11
12
apt-get update > /dev/null 2>&1
13
14
+
15
+# PATH fix
16
+if [ $( grep -ic "VESTA" /etc/profile.d/vesta.sh ) -eq 0 ]; then
17
+ echo "export VESTA='$VESTA'" > /etc/profile.d/vesta.sh
18
+fi
19
+if [ $( grep -ic "vesta" /root/.bash_profile ) -eq 0 ]; then
20
+ echo 'PATH=$PATH:'$VESTA'/bin' >> /root/.bash_profile
21
22
23
24
+# Linking /var/log/vesta
25
+if [ ! -L "/var/log/vesta" ]; then
26
+ ln -s $VESTA/log /var/log/vesta
27
28
29
30
if [ -f "/etc/roundcube/plugins/password/config.inc.php" ]; then
31
32
# Roundcube Vesta password driver - changing password_vesta_host (in config) to server hostname
0 commit comments