mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 23:18:42 +01:00
83db93d16a
Fix the symbolic link name to /etc/rc.d/S01cgroupfs-mount.
13 lines
213 B
Bash
Executable File
13 lines
213 B
Bash
Executable File
#!/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
|
|
}
|