summaryrefslogtreecommitdiffstats
path: root/packager/openslx
blob: 691025645b4181d0df13e170c091d6ca85a8c540 (plain) (blame)
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
#!/bin/bash
# ------------------------------------------------------------------------------
#
#                        OpenSLX Toolkit Next Gen
#
# ------------------------------------------------------------------------------
#
# The next generation toolkit to build a stateless linux system bootable
# over the network. Composed of dracut-built initramfs and a full system clone.
#
# ------------------------------------------------------------------------------
#
#                                Main Code
#
# ------------------------------------------------------------------------------

declare -rg ARG0="$0"
declare -rg SELF="$(readlink -f "${ARG0}")"
declare -rg ROOT_DIR="$(dirname "${SELF}")"
declare -rg SELF_PID="$$"

# let's keep it simple for now, just source our config/functions file
. "${ROOT_DIR}/${ARG0}".functions || perror "Could not source functions."
. "${ROOT_DIR}/${ARG0}".config || perror "Could not source config."

# root check
if [ "$(id -u)" -ne 0 ]; then
	banner
	perror "ERROR: You need to be root to use this toolkit."
else
	banner
fi

# setup trap
trap cleanexit SIGINT SIGTERM

# read params
read_params $@

# react to given action
process_action