aboutsummaryrefslogtreecommitdiff
path: root/tests/size.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-12-28 00:44:27 +0100
committerRicardo Wurmus <rekado@elephly.net>2024-01-01 14:35:13 +0100
commit59970a9c57bc39044f9ec3841cc53e7d40be515e (patch)
treee03c874aa45c0c565311fe4aac5c92d7291cbe83 /tests/size.scm
parent6d564299c6f01a98f41ed5ecfde895f412dde3fa (diff)
downloadguix-59970a9c57bc39044f9ec3841cc53e7d40be515e.tar.gz
guix-59970a9c57bc39044f9ec3841cc53e7d40be515e.zip
gnu: r-datawizard: Update to 0.9.1.
* gnu/packages/cran.scm (r-datawizard): Update to 0.9.1. Change-Id: I91de1685b889eb516204499c6e21c0fb1475ea13
Diffstat (limited to 'tests/size.scm')
0 files changed, 0 insertions, 0 deletions
-tooltip'>Adds low-level support for launching Linux containers with cgroup namespaces. * gnu/build/linux-container.scm (%namespaces): Add 'cgroup. (namespaces->bit-mask): Handle it. * guix/build/syscalls.scm (CLONE_NEWCGROUP): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Ryan Sundberg 2020-12-06Revert "linux-container: Correct test for unprivileged user namespace support."...This broke 'guix environment --container' on non-Debian distributions. Fixes <https://bugs.gnu.org/45066>. Reported by luhux <luhux@outlook.com>. This reverts commit 8bc5ca5160db3d82bd5b6b2b7ed80c96f42bd33e. Marius Bakke 2020-12-03linux-container: Correct test for unprivileged user namespace support....Fixes <https://bugs.gnu.org/31977>. Reported by Paul Garlick <pgarlick@tourbillion-technology.com>. * gnu/build/linux-container.scm (unprivileged-user-namespace-supported?): Return #f when the 'userns-file' does not exist. Paul Garlick 2020-10-01linux-container: Reset jailed root permissions....* gnu/build/linux-container.scm (mount-file-systems): Add 'chmod' call. * tests/containers.scm ("call-with-container, mnt namespace, root permissions"): New test. Jelle Licht 2020-09-10build: linux-container: Fix run-container....This is a follow-up of 5316dfc0f125b658e4a2acf7f00f49501663d943. Some users of run-container may expect that the container is jailed, even if there are no mounts. This is the case for some Guix tests. * gnu/build/linux-container.scm (run-container): Do not jail the container when the requested root is "/". Mathieu Othacehe 2020-09-02linux-container: Do not jail the container unconditionally....We may want to run a container inside the MNT namespace, without jailing the container. If RUN-CONTAINER is passed a null MOUNTS list, do not jail the container. * gnu/build/linux-container.scm (run-container): Do not call MOUNT-FILE-SYSTEMS if MOUNTS list is empty. Mathieu Othacehe