Browse Source

Merge pull request #369 from hestiacp/bugfix-installer

Add welcome message to panel on clean install
Kristan Kenney 6 years ago
parent
commit
ac6d39cd1d
2 changed files with 6 additions and 0 deletions
  1. 3 0
      install/hst-install-debian.sh
  2. 3 0
      install/hst-install-ubuntu.sh

+ 3 - 0
install/hst-install-debian.sh

@@ -1790,6 +1790,9 @@ echo
 cat $tmpfile
 rm -f $tmpfile
 
+# Add welcome message to notification panel
+$HESTIA/bin/v-add-user-notification admin 'Welcome!' 'For more information on how to use Hestia Control Panel, click on the Help icon in the top right corner of the toolbar.<br><br>Please report any bugs or issues on GitHub at<br>https://github.com/hestiacp/hestiacp/Issues<br><br>Have a great day!'
+
 echo "(!) IMPORTANT: You must logout or restart the server before continuing."
 if [ "$interactive" = 'yes' ]; then
     echo -n " Do you want to logout now? [Y/N] "

+ 3 - 0
install/hst-install-ubuntu.sh

@@ -1692,6 +1692,9 @@ echo
 cat $tmpfile
 rm -f $tmpfile
 
+# Add welcome message to notification panel
+$HESTIA/bin/v-add-user-notification admin 'Welcome!' 'For more information on how to use Hestia Control Panel, click on the Help icon in the top right corner of the toolbar.<br><br>Please report any bugs or issues on GitHub at<br>https://github.com/hestiacp/hestiacp/Issues<br><br>Have a great day!'
+
 echo "(!) IMPORTANT: You must logout or restart the server before continuing."
 if [ "$interactive" = 'yes' ]; then
     echo -n " Do you want to logout now? [Y/N] "