blob: 55d82b91820af22fe50feec57a1f27cffe76067a [file] [log] [blame]
#!/bin/sh
case "$1" in
slot-post-install)
case "$RAUC_SLOT_CLASS" in
cfg)
# whitelist so that we don't copy cruft or lost+found
for ITEM in \
calibration \
etc \
journald-remote \
random-seed \
ssh-user-auth \
; do
if [[ -d /cfg/${ITEM} || -f /cfg/${ITEM} ]]; then
cp -a /cfg/${ITEM} ${RAUC_SLOT_MOUNT_POINT}/
fi
done
;;
*)
echo "Internal error: hook mismatched"
exit 11
esac
;;
*)
echo "Internal error: unrecognized hook"
exit 11
;;
esac
if [[ -f /lib/libsysrepo.so.0.7 ]]; then
# Updating from old sysrepo with incompatible repository layout
rm -rf ${RAUC_SLOT_MOUNT_POINT}/etc/sysrepo
# No more netopeer2-keystored, different config
rm -rf ${RAUC_SLOT_MOUNT_POINT}/etc/keystored
echo "sysrepo configuration not preserved"
fi
exit 0