Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

40ignition-ostree: add ignition-ostree-mount-state-overlays.service #2838

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[Unit]
Description=Ignition OSTree Mount State Overlays
DefaultDependencies=false
ConditionKernelCommandLine=|ostree
ConditionPathExists=|/run/ostree-live

# Need to do this with all mount points active
After=ignition-mount.service
# Not strictly required, but both do /var things
After=ignition-ostree-populate-var.service

# But *before* we start dumping files in there
Before=ignition-files.service

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/libexec/ignition-ostree-mount-state-overlays mount
ExecStop=/usr/libexec/ignition-ostree-mount-state-overlays umount
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/bin/bash
set -euo pipefail

fatal() {
echo "$@" >&2
exit 1
}

if [ $# -ne 1 ] || { [[ $1 != mount ]] && [[ $1 != umount ]]; }; then
fatal "Usage: $0 <mount|umount>"
fi

# if state overlays are not enabled, there's nothing to do
if ! ls /sysroot/usr/lib/systemd/system/local-fs.target.requires/ostree-state-overlay@*.service 2>/dev/null; then
exit 0
fi

do_mount() {
# be nice to persistent /var; if the top-level state overlay dir exists,
# then assume it's properly labeled
relabel=1
state_overlays_dir=/sysroot/var/ostree/state-overlays
if [ -d ${state_overlays_dir} ]; then
relabel=0
fi
for overlay in /usr/lib/opt /usr/local; do
escaped=$(systemd-escape --path "${overlay}")
overlay_dirs=${state_overlays_dir}/${escaped}
mkdir -p "${overlay_dirs}"/{upper,work}
# ideally we'd use `ostree admin state-overlay`, but that'd require
# pulling in bwrap and chroot which isn't yet in the FCOS initrd
mount -t overlay overlay /sysroot/${overlay} -o "lowerdir=/sysroot/${overlay},upperdir=${overlay_dirs}/upper,workdir=${overlay_dirs}/work"
done
if [ $relabel = 1 ]; then
coreos-relabel /var/ostree
# the above relabel will have relabeled the upperdir too; relabel that
# from the perspective of the mount point so it's not var_t
for overlay in /usr/lib/opt /usr/local; do
coreos-relabel ${overlay}
done
fi
}

do_umount() {
for overlay in /usr/lib/opt /usr/local; do
umount /sysroot/${overlay}
done
}

"do_$1"
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,9 @@ install() {
inst_script "$moddir/coreos-check-rootfs-size" \
/usr/libexec/coreos-check-rootfs-size

install_ignition_unit ignition-ostree-mount-state-overlays.service
inst_script "$moddir/ignition-ostree-mount-state-overlays.sh" \
/usr/libexec/ignition-ostree-mount-state-overlays

inst_script "$moddir/coreos-relabel" /usr/bin/coreos-relabel
}
Loading