X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=functions;h=ddcd97dd99fe7f4ed85ab93ec03694216faf5a9a;hb=36406858072d4bb5ddb3e4fed3c9949c5618f206;hp=45a634a1e575395e86c8457b342e3b2a39d5cc98;hpb=f86ce1827c0f74b3ac15598946b41477dd5a4066;p=rrq%2Foverlay-boot.git diff --git a/functions b/functions index 45a634a..ddcd97d 100644 --- a/functions +++ b/functions @@ -3,6 +3,8 @@ # Rerun with sudo if needed [ $(id -u) = 0 ] || exec sudo $0 $@ +export ACTION="$(basename $0)" + # Function to write a message and exit with error code die() { echo "$*" >&2 @@ -148,6 +150,17 @@ setup_overlay() { mount --bind $UPPER $LOWER fi + grep ^SHARE= "$CONFIG" | while read A ; do + B="$(echo ${A#SHARE=})" + D="$(realpath "$LOWER$B")" + [ "$D" = "$LOWER" ] && continue + if [ -d "$D" ] ; then + echo bind mount $D onto $LIVE$D + mkdir -p $LIVE$D + mount --bind $D $LIVE$D + fi + done + env CONFIG="$CONFIG" $POSTMOUNT "LIVE" "$UPPER" } @@ -164,3 +177,14 @@ is_live() { list_running() { pgrep -a overlay-boot | awk '{print $4}' } + +# Start cgroup v2 cpuset accounting if enabled. +# Needs manual enabling, with: +# mount -t cgroup2 cgroup2 /sys/fs/cgroup +setup_cgroup2_accounting() { + local NAME="$1" ME="$2" + local ACCDIR="$(awk '$3 == "cgroup2" {print $2; exit}' /proc/mounts)" + [ -z "$ACCDIR" ] && return 0 + mkdir -p "$ACCDIR/$NAME" + echo "$ME" > $ACCDIR/$NAME/cgroup.procs +}