-
Notifications
You must be signed in to change notification settings - Fork 0
/
rootInit.sh
executable file
·41 lines (31 loc) · 1.35 KB
/
rootInit.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
#!/bin/bash
# escape on error
set -e
# set to "-y" to install/update packages without manually confirming
# used mainly by test script
AUTO_ACCEPT_FLAG=${AUTO_ACCEPT_FLAG:=""}
###############################################################################
# Permission lock - only root user is allowed
###############################################################################
# 1>&2 # write to stderr
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi
###############################################################################
# Argument check
###############################################################################
TMP_USERNAME=`id -u "$NON_ROOT_USERNAME" 2> /dev/null`
if [[ $TMP_USERNAME == "" ]] || [[ $TMP_USERNAME == "root" ]]; then
echo "You must provide you regular user's username via NON_ROOT_USERNAME" 1>&2
exit 1
fi
###############################################################################
# Main procedure
###############################################################################
# acting as root run
echo "SANAGER: Updating apt cache and installing sudo package";
apt-get update -qq $AUTO_ACCEPT_FLAG
apt-get install sudo -qq $AUTO_ACCEPT_FLAG
echo "SANAGER: Adding user $NON_ROOT_USERNAME privileges to sudo. (relogin on all terminals to make effect)";
adduser $NON_ROOT_USERNAME sudo