forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessages.sh
More file actions
36 lines (35 loc) · 1.26 KB
/
messages.sh
File metadata and controls
36 lines (35 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
function welcome_message() {
echo
echo ' _ _ _ _ ____ ____ '
echo ' | | | | ___ ___| |_(_) __ _ / ___| _ \ '
echo ' | |_| |/ _ \/ __| __| |/ _` | | | |_) | '
echo ' | _ | __/\__ \ |_| | (_| | |___| __/ '
echo ' |_| |_|\___||___/\__|_|\__,_|\____|_| '
echo ""
echo " Hestia Control Panel Upgrade Script"
echo " Version: $version "
echo "==================================================="
echo ""
echo "Existing files will be backed up to the following location:"
echo "$HESTIA_BACKUP/"
echo ""
echo "This process may take a few moments, please wait..."
echo ""
}
function upgrade_complete() {
echo ""
echo " Upgrade complete! Please report any bugs or issues to"
echo " https://github.com/hestiacp/hestiacp/issues"
echo ""
echo " We hope that you enjoy this release of Hestia Control Panel,"
echo " enjoy your day!"
echo ""
echo " Sincerely,"
echo " The Hestia Control Panel development team"
echo ""
echo " www.hestiacp.com"
echo " Made with love & pride by the open-source community around the world."
echo ""
echo ""
}