summaryrefslogtreecommitdiffstats
path: root/satellit_upgrader/pack-update.sh
blob: 37b96c1f139d01443464933505a2623c3558da26 (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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#!/bin/bash

declare -rg SELFPID=$$
perror () {
	if [ -n "$IGNORE_ERRORS" ]; then
		echo "[ERROR] $@"
		return 0
	fi
	echo "[FATAL] $@"
	[ "$$" != "$SELFPID" ] && kill "$SELFPID"
	exit 1
}

patchtgz () {
	[ -z "$1" ] && perror "patchtgz call failure"
	local VARNAME="$1"
	local VALUE="$2"
	sed -i "s,%${VARNAME}%,${VALUE},g" "$UPDATER" || perror "could not patchtgz $VARNAME in updater"
}

declare -rg UPDATER="updater.sh"
declare -rg TGZ_SLXADMIN="files/slx-admin.tar.gz"
declare -rg TGZ_DOZMOD="files/dozmod.tar.gz"
declare -rg TGZ_TASKMANAGER="files/taskmanager.tar.gz"
declare -rg TGZ_TFTP="files/tftpdir.tar.gz"
declare -rg TGZ_IPXE="files/ipxe.tar.gz"
declare -rg TGZ_LDADP="files/ldadp.tar.gz"
declare -rg TGZ_DNBD3="files/dnbd3-server.tar.gz"

# Prepare installer
cp "updater.template.sh" "$UPDATER" || perror "could not copy template"
chmod +x "$UPDATER"

LEAN=
while true; do
	case "$1" in
		--lean|-l)
			LEAN=true
			;;
		*)
			break
			;;
	esac
	shift
done

# Prepare source directory
declare -rg SRCDIR=$1
if [ -z "$SRCDIR" ]; then
	echo "Usage: $0 <srcdir>"
	echo "Where <srcdir> is the directory you put all the file to pack as payload"
	exit 1
fi

if [ "x$(stat -c "%d:%i" "$SRCDIR")" != "x$(stat -c "%d:%i" files)" ]; then
	rm -rf "files"
	[ -d "files" ] && perror "files still exists..."
	cp -r "$SRCDIR" "files"
fi

if [ ! -d "$SRCDIR" ]; then
	echo "Source dir '$SRCDIR' not found!"
fi

#declare -rg TMPDIR=$(mktemp -d)
#[ -d "$TMPDIR" ] || perror "TMPDIR fail."

addpayload () {
	echo -n "Includes $2: "
	local FILEVAR=$1
	local FILENAME=${!FILEVAR}
	if [ -e "${FILENAME}" ]; then
		echo "yes"
		patchtgz "$FILEVAR" "$FILENAME"
	else
		echo "no"
		patchtgz "$FILEVAR"
	fi
}

addinstallfile () {
	echo -n "Includes $1: "
	local file=$1
	local path=$(dirname "$file")
	if [ ! -d "../satellit_installer" ]; then
		echo "NO! (satellit_installer not found)"
	elif [ ! -e "../satellit_installer/static_files/$file" ]; then
		echo "NO! (file not found in satellit_installer/static_files)"
	else
		mkdir -p "files/$path" || echo -n "(mkdir failed) "
		if cp "../satellit_installer/static_files/$file" "files/$file"; then
			echo "yes"
		else
			echo "...no! (copy failed)"
		fi
	fi
}

# Replace variables
# slxadmin version
echo -n "Includes SLX-Admin: "
if [ -e "$TGZ_SLXADMIN" ]; then
	echo "yes"
	VERS=$(date +%Y%j%H)
	[ -n "$VERS" ] || perror "Could not extract slx-admin version!"
	echo "Version: $VERS"
	sed -i "s/%TARGET_WEBIF_VERSION%/${VERS}/" "$UPDATER" || perror "could not patch slxadmin version in updater"
	sed -i "s/%SLXADMIN_FOOTER%/$(date '+%y-%m-%d %H:%M')/" "$UPDATER" || perror "could not patch slxadmin footer in updater"
	patchtgz "TGZ_SLXADMIN" "$TGZ_SLXADMIN"
else
	echo "no"
	patchtgz "TGZ_SLXADMIN"
fi

addpayload "TGZ_DOZMOD" "Dozmod server"
addpayload "TGZ_TASKMANAGER" "Taskmanager"
addpayload "TGZ_TFTP" "TFTP/PxeLinux data"
addpayload "TGZ_IPXE" "iPXE source code"
addpayload "TGZ_LDADP" "ldap/ad proxy"
addpayload "TGZ_DNBD3" "dnbd3-server"

if [ -z "$LEAN" ]; then
	addinstallfile "lighttpd.conf"
	addinstallfile "lighttpd-auto-ssl.sh"
	addinstallfile "lighttpd-include-conf-d.sh"
	addinstallfile "slxadmin-config.php"
	addinstallfile "slxadmin-cronscript"
	addinstallfile "slxadmin-crontab"
	addinstallfile "patch_lighttpd_phpchildren"

	# Not quite ideal, watch out for similar names
	addinstallfile "dnbd3/dnbd3-server.service"
	addinstallfile "dnbd3/is-enabled"
	addinstallfile "dnbd3/server.conf"
	addinstallfile "dnbd3/rpc.acl"

	addinstallfile "tftpd/tftpd-hpa.service"
	addinstallfile "tftpd/tftpd-hpa"

	# TODO: Unify more
	source ../satellit_installer/includes/10-sudo_config.inc
	sudo_config files/tm-sudo-config
fi

# Last patch: Payload offset
# Calc payload offset, which is tricky as the size changes as we patch
SIZE=$(stat -c %s "$UPDATER")
SIZE=$(( ( $SIZE / 1024 ) * 1024 + 1024 ))
sed -i "s/%PAYLOAD_OFFSET%/${SIZE}/" "$UPDATER" || perror "could not patch payload variable in updater"
# Truncate, append payload
truncate --size="$SIZE" "$UPDATER" || perror "Could not truncate updater to $SIZE bytes"
echo "Appending tar payload to final updater..."
tar ckz files/* >> "$UPDATER" || perror "Could not append payload to updater"
echo "..done"