mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-18 21:27:54 +00:00
91b119cbae
The supervisor had to chroot into the host root in order to read the journal logs. This won't be possible anymore once the supervisor becomes an app. This commit copies the journalctl binary and necessary libraries from a debian image into the supervisor image in order to be able to use the tool on runtime. Change-type: patch
13 lines
305 B
Bash
Executable File
13 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
mkdir -p /sysroot/bin
|
|
cp /bin/journalctl /sysroot/bin/
|
|
# Get all library dependencies from the binary
|
|
for lib in $(ldd /bin/journalctl | grep -oE '(\/.+?) '); do
|
|
mkdir -p "/sysroot/$(dirname "$lib")"
|
|
# Copy the dependency dereferencing any symlinks
|
|
cp -L "$lib" "/sysroot/$lib"
|
|
done
|