forked from jasonheecs/ubuntu-server-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
82 lines (63 loc) · 1.78 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
#!/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() {
source "${current_dir}/setupLibrary.sh"
}
current_dir=$(getCurrentDir)
includeDependencies
function setupSwap() {
createSwap
mountSwap
tweakSwapSettings "10" "50"
saveSwapSettings
}
function hasSwap() {
local swap_status=$(sudo swapon -s)
if [[ "$(sudo swapon -s)" == *"/swapfile"* ]]; then
echo "true"
else
echo "false"
fi
}
function cleanup() {
if [[ -f "/etc/sudoers.bak" ]]; then
revertSudoers
fi
}
function logTimestamp() {
local filename=${1}
echo "===================" >>"${filename}" 2>&1
echo "Log generated on $(date)" >>"${filename}" 2>&1
echo "===================" >>"${filename}" 2>&1
}
read -p "Enter the username of the new user account:" username
read -s -p "Enter new UNIX password:" password
printf "\n"
read -s -p "Retype new UNIX password:" password_confirmation
printf "\n"
if [[ "${password}" != "${password_confirmation}" ]]; then
echo "Passwords do not match!"
exit 1
fi
trap cleanup EXIT SIGHUP SIGINT SIGTERM
addUserAccount "${username}" "${password}"
read -rp $'Paste in the public SSH key for the new user:\n' sshKey
echo 'Running setup script...'
logTimestamp "output.log"
disableSudoPassword "${username}" >>output.log 2>&1
addSSHKey "${username}" "${sshKey}" >>output.log 2>&1
changeSSHConfig >>output.log 2>&1
setupUfw >>output.log 2>&1
if [[ $(hasSwap) == "false" ]]; then
setupSwap >>output.log 2>&1
fi
setTimezone "Asia/Singapore" >>output.log 2>&1
configureNTP >>output.log 2>&1
sudo service ssh restart
cleanup
echo 'Setup Done! Log file is located at output.log'