Skip to content

Commit

Permalink
factory: handle properly snapd_recovery_mode based on modeenv value
Browse files Browse the repository at this point in the history
The real source of true for the current mode is stored in /var/lib/snapd/modeenv
this value might be altered after
/usr/lib/systemd/system-generators/journald-console was already run.
Or /var/lib/snapd/modeenv did not even exist at that time.
This happens in install/factory-reset/recovery modes which might be
handled within the initrd.
If this is detected, update journald-console generator and remove
already created journald.conf.d/core-override.conf overlay.

Signed-off-by: Ondrej Kubik <[email protected]>
  • Loading branch information
kubiko committed Oct 10, 2023
1 parent a18ef35 commit 3ed184d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion factory/usr/lib/systemd/system-generators/journald-console
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
if ! grep -q 'snapd_recovery_mode=install' /proc/cmdline
if grep -q 'snapd_recovery_mode=run' /proc/cmdline
then
exit 0
fi
Expand Down
7 changes: 7 additions & 0 deletions factory/usr/lib/the-modeenv
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ if [ "${mode}" = "run" ]; then
elif [ -f /run/mnt/ubuntu-boot/uboot/ubuntu/boot.sel ]; then
echo '/run/mnt/ubuntu-boot/uboot/ubuntu /boot/uboot none bind 0 0' >> /run/image.fstab
fi
# if there is override for journald.conf, remove it, it has ForwardToConsole=true
# also modify generator, as current mode is now new run mode
if [ -f /run/systemd/journald.conf.d/core-override.conf ]; then
rm /run/systemd/journald.conf.d/core-override.conf
cmdline_mode="$(/usr/libexec/core/get-arg snapd_recovery_mode)
sed -i 's/snapd_recovery_mode=run/snapd_recovery_mode='"${cmdline_mode}"'/g' /usr/lib/systemd/system-generators/journald-console
fi
fi
mount -o bind /run/image.fstab /sysroot/etc/fstab
umount -lf /sysroot/run
Expand Down

0 comments on commit 3ed184d

Please sign in to comment.