mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-08-31 22:51:41 +00:00
17 lines
234 B
Bash
Executable File
17 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
function failed {
|
|
printf "cgroup not detected, suite FAILED\n" >&1
|
|
exit 1
|
|
}
|
|
|
|
DEVICE=/dev/sdb
|
|
|
|
mount | grep cgroup2 || failed
|
|
|
|
stat /sys/fs/cgroup/newcgroup || failed
|
|
|
|
printf "cgroup2 detected, suite PASSED\n" >&1
|