bfa873343a
Allows things like podman/docker to work out of the box. I looked at /etc/init.d/cgroups, and having this service enabled isn't a problem if the kernel doesn't have cgroup support... in that situation, the service script just simply exits (success). [ci:skip-build] already built successfully in CI
6 lines
131 B
Bash
6 lines
131 B
Bash
#!/bin/sh -e
|
|
|
|
for service in cgroups dbus haveged wpa_supplicant chronyd rfkill; do
|
|
rc-update -q add $service default
|
|
done
|
|
exit 0
|