blob: 0d6b68dc393ce9b6509fded6c6253faeb6a34c87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh /etc/rc.common
START=01
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
}
|