-
Notifications
You must be signed in to change notification settings - Fork 250
/
setup.sh
101 lines (78 loc) · 2.14 KB
/
setup.sh
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/bash
set -e
function getCurrentDir() {
local current_dir="${BASH_SOURCE%/*}"
if [[ ! -d "${current_dir}" ]]; then current_dir="$PWD"; fi
echo "${current_dir}"
}
function includeDependencies() {
# shellcheck source=./setupLibrary.sh
source "${current_dir}/setupLibrary.sh"
}
current_dir=$(getCurrentDir)
includeDependencies
output_file="output.log"
function main() {
read -rp "Do you want to create a new non-root user? (Recommended) [Y/N] " createUser
# Run setup functions
trap cleanup EXIT SIGHUP SIGINT SIGTERM
if [[ $createUser == [nN] ]]; then
username=$(whoami)
updateUserAccount "${username}"
elif [[ $createUser == [yY] ]]; then
read -rp "Enter the username of the new user account: " username
addUserAccount "${username}"
else
echo 'This is not a valid choice!'
exit 1
fi
read -rp $'Paste in the public SSH key for the new user:\n' sshKey
echo 'Running setup script...'
logTimestamp "${output_file}"
exec 3>&1 >>"${output_file}" 2>&1
disableSudoPassword "${username}"
addSSHKey "${username}" "${sshKey}"
changeSSHConfig
setupUfw
if ! hasSwap; then
setupSwap
fi
setupTimezone
echo "Configuring System Time... " >&3
configureNTP
sudo service ssh restart
cleanup
echo "Setup Done! Log file is located at ${output_file}" >&3
}
function setupSwap() {
createSwap
mountSwap
tweakSwapSettings "10" "50"
saveSwapSettings "10" "50"
}
function hasSwap() {
[[ "$(sudo swapon -s)" == *"/swapfile"* ]]
}
function cleanup() {
if [[ -f "/etc/sudoers.bak" ]]; then
revertSudoers
fi
}
function logTimestamp() {
local filename=${1}
{
echo "==================="
echo "Log generated on $(date)"
echo "==================="
} >>"${filename}" 2>&1
}
function setupTimezone() {
echo -ne "Enter the timezone for the server (Default is 'Asia/Singapore'):\n" >&3
read -r timezone
if [ -z "${timezone}" ]; then
timezone="Asia/Singapore"
fi
setTimezone "${timezone}"
echo "Timezone is set to $(cat /etc/timezone)" >&3
}
main