bcachefs-tools/debian/bcachefs-tools.postinst
Darrick J. Wong fbfdd05ac5 fsck: add systemd service definitions for automatic online service
Add some systemd service files so that bcachefs can automatically fsck
mounted filesystems in the background.  Hopefully with minimal
disruption to frontend operations.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
2023-12-07 11:57:36 -05:00

15 lines
146 B
Bash

#!/bin/sh
set -e
#DEBHELPER#
case "$1" in
configure)
if which update-initramfs >/dev/null; then
update-initramfs -u
fi
;;
esac