-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·51 lines (36 loc) · 1.36 KB
/
install.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
#!/bin/bash
##################################################################
# This is the main script for setting up the system. This script #
# invokes various sub-functions for system package installation, #
# dotfile configuration etc. #
##################################################################
## Check if the user is running the script with sudo previlages.
if ! [ "$(id -u)" = "0" ]; then
echo "The script needs to be run with root previlages" 1>&2
exit 1
fi
## Import all the library functions.
. ./utils.sh
. ./sys-packages-install.sh
## Setup logging infrastructure.
## This is a function defined in the `utils.sh` file.
setup_logging
## Start system setup.
print_section_start_message "system setup at $(date)"
## Install standard system packages.
print_section_start_message "system packages installation"
sys_pkgs_install
## Installing some system packages by custom methods
. ./sys-custom-packages-install.sh
print_section_start_message "system custom packages installation"
sys_custom_pkgs_install
## The following functions need to be run as the user
## rather than the root user.
su ${SUDO_USER} <<EOF
. ./utils.sh
. ./custom-packages-install.sh
## Install all the custom packages, preferably
## in the user's home directory
print_section_start_message "custom packages installation"
custom_pkgs_install
EOF