X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=functions;h=2fa68ccf2de35cad8232b355ab57f6a849d1fcb2;hb=207b672e863b408cff5a56ddb2a9ff08f4523791;hp=2cc9639ad68c7f97455b404321dcf211c07d490f;hpb=c3500f3b79387a95bb8bd39afdfca233a290e962;p=rrq%2Foverlay-boot.git diff --git a/functions b/functions index 2cc9639..2fa68cc 100644 --- a/functions +++ b/functions @@ -11,6 +11,10 @@ die() { exit 1 } +beginswith() { + [ "$1" != "${1#$2}" ] +} + # Function to setup subhost name and log file subhost_name() { CONFIG="$1" @@ -150,6 +154,17 @@ setup_overlay() { mount --bind $UPPER $LOWER fi + grep ^SHARE= "$CONFIG" | while read A ; do + B="$(echo ${A#SHARE=})" + D="$(realpath "$B")" + [ "$D" = "$LOWER" ] && continue + if [ -d "$D" ] ; then + echo bind mount $D onto $LIVE$B + mkdir -p $LIVE$D + mount --bind $D $LIVE$B + fi + done + env CONFIG="$CONFIG" $POSTMOUNT "LIVE" "$UPPER" } @@ -166,3 +181,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 +}