packages/utils/cgroupfs-mount/files/cgroupfs-mount.init
Gerard Ryan 992b2c70e6 cgroupfs-mount: Added cgroup mount scripts
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2019-07-04 19:35:15 +08:00

12 lines
212 B
Bash

#!/bin/sh /etc/rc.common
START=1
boot() {
# Procd mounts non-hierarchical cgroupfs so unmount first before cgroupfs-mount
if mountpoint -q /sys/fs/cgroup; then
umount /sys/fs/cgroup/
fi
cgroupfs-mount
}