forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhst-install.sh
More file actions
75 lines (66 loc) · 1.83 KB
/
hst-install.sh
File metadata and controls
75 lines (66 loc) · 1.83 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
# Hestia installation wrapper
# https://www.hestiacp.com
#
# Currently Supported Operating Systems:
#
# Debian 8, 9
# Ubuntu 14.04, 16.04, 18.04
#
# Am I root?
if [ "x$(id -u)" != 'x0' ]; then
echo 'Error: this script can only be executed by root'
exit 1
fi
# Check admin user account
if [ ! -z "$(grep ^admin: /etc/passwd)" ] && [ -z "$1" ]; then
echo "Error: user admin exists"
echo
echo 'Please remove admin user before proceeding.'
echo 'If you want to do it automatically run installer with -f option:'
echo "Example: bash $0 --force"
exit 1
fi
# Check admin group
if [ ! -z "$(grep ^admin: /etc/group)" ] && [ -z "$1" ]; then
echo "Error: group admin exists"
echo
echo 'Please remove admin group before proceeding.'
echo 'If you want to do it automatically run installer with -f option:'
echo "Example: bash $0 --force"
exit 1
fi
# Detect OS
case $(head -n1 /etc/issue | cut -f 1 -d ' ') in
Debian) type="debian" ;;
Ubuntu) type="ubuntu" ;;
*) type="NoSupport" ;;
esac
# Check if OS is supported
if [ "$type" = "NoSupport" ]; then
echo "Your OS is currently not supported."
exit 1;
fi
# Check wget
if [ -e '/usr/bin/wget' ]; then
wget -q https://raw.githubusercontent.com/hestiacp/hestiacp/beta/install/hst-install-$type.sh -O hst-install-$type.sh
if [ "$?" -eq '0' ]; then
bash hst-install-$type.sh $*
exit
else
echo "Error: hst-install-$type.sh download failed."
exit 1
fi
fi
# Check curl
if [ -e '/usr/bin/curl' ]; then
curl -s -O https://raw.githubusercontent.com/hestiacp/hestiacp/beta/install/hst-install-$type.sh
if [ "$?" -eq '0' ]; then
bash hst-install-$type.sh $*
exit
else
echo "Error: hst-install-$type.sh download failed."
exit 1
fi
fi
exit