Merge branch 'devel' into 'main'

reworking glicid cgroups

See merge request glicid-public/guix-glicid!139
This commit is contained in:
Jean-François GUILLAUME 2022-11-22 14:34:58 +00:00
commit ecd958a1db

View file

@ -5,6 +5,24 @@
(define %cgroups
(append (list
(file-system
(device "none")
(mount-point "/run/systemd")
(type "tmpfs")
(check? #f)
(flags '(no-suid no-dev no-exec))
(options "mode=0755")
(create-mount-point? #t)
)
(file-system
(device "none")
(mount-point "/run/user")
(type "tmpfs")
(check? #f)
(flags '(no-suid no-dev no-exec))
(options "mode=0755")
(create-mount-point? #t)
)
(file-system
(device "cgroup")
(mount-point "/sys/fs/cgroup/hugetlb")
@ -41,5 +59,6 @@
(create-mount-point? #t)
(dependencies (list (car %control-groups)))
)
%control-groups
))
)