-
Notifications
You must be signed in to change notification settings - Fork 36
/
convert_torcx_image.sh
executable file
·46 lines (41 loc) · 1.94 KB
/
convert_torcx_image.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
#!/usr/bin/env bash
set -euo pipefail
SCRIPTFOLDER="$(dirname "$(readlink -f "$0")")"
if [ $# -lt 2 ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
echo "Usage: $0 TORCXTAR SYSEXTNAME"
echo "The script will unpack the Torcx tar ball and create a sysext squashfs image with the name SYSEXTNAME.raw in the current folder."
echo "A temporary directory named SYSEXTNAME in the current folder will be created and deleted again."
echo "All files in the sysext image will be owned by root."
echo "The conversion is done on best effort, and only the TORCX_BINDIR (/usr/bin), TORCX_UNPACKDIR (/), and TORCX_IMAGEDIR ('') env vars in the systemd units get replaced."
"${SCRIPTFOLDER}"/bake.sh --help
exit 1
fi
TORCXTAR="$1"
SYSEXTNAME="$2"
rm -rf "${SYSEXTNAME}"
mkdir -p "${SYSEXTNAME}"
tar --force-local -xf "${TORCXTAR}" -C "${SYSEXTNAME}"
rm -rf "${SYSEXTNAME}"/.torcx
mkdir -p "${SYSEXTNAME}"/usr
if [ -e "${SYSEXTNAME}"/bin ]; then
mv "${SYSEXTNAME}"/bin "${SYSEXTNAME}"/usr/
fi
if [ -e "${SYSEXTNAME}"/lib ]; then
mv "${SYSEXTNAME}"/lib "${SYSEXTNAME}"/usr/
fi
for FILE in "${SYSEXTNAME}"/usr/lib/systemd/system/*.service "${SYSEXTNAME}"/usr/lib/systemd/system/*.socket; do
if [ -e "${FILE}" ]; then
sed -i \
-e 's,EnvironmentFile=/run/metadata/torcx,,g' -e 's,Environment=TORCX_IMAGEDIR=.*,,g' \
-e "s,\[Service\],\[Service\]\nEnvironment=TORCX_BINDIR=/usr/bin\nEnvironment=TORCX_UNPACKDIR=/\nEnvironment=TORCX_IMAGEDIR=,g" \
-e 's,After=torcx.target,,g' -e 's,Requires=torcx.target,,g' "${FILE}"
fi
done
for ENTRY in "${SYSEXTNAME}/usr/lib/systemd/system/"*.wants/*; do
UNIT=$(basename "${ENTRY}")
TARGET=$(echo "${ENTRY}" | rev | cut -d / -f 2 | rev | sed 's/.wants$//')
mkdir -p "${SYSEXTNAME}/usr/lib/systemd/system/${TARGET}.d"
{ echo "[Unit]"; echo "Upholds=${UNIT}"; } > "${SYSEXTNAME}/usr/lib/systemd/system/${TARGET}.d/10-${UNIT/./-}.conf"
done
RELOAD=1 "${SCRIPTFOLDER}"/bake.sh "${SYSEXTNAME}"
rm -rf "${SYSEXTNAME}"