main/postmarketos-base-ui: setup cgroups on boot (MR 4585)

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
This commit is contained in:
Clayton Craft 2023-11-30 14:55:16 -08:00
parent 12f440a0a1
commit bfa873343a
No known key found for this signature in database
GPG key ID: 4A4CED6D7EDF950A
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# Maintainer: Clayton Craft <clayton@craftyguy.net>
pkgname=postmarketos-base-ui
pkgver=14
pkgver=15
pkgrel=0
pkgdesc="Meta package for minimal postmarketOS UI base"
url="https://postmarketos.org"

View file

@ -1,6 +1,6 @@
#!/bin/sh -e
for service in dbus haveged wpa_supplicant chronyd rfkill; do
for service in cgroups dbus haveged wpa_supplicant chronyd rfkill; do
rc-update -q add $service default
done
exit 0