aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-daemon.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/guix-daemon.sh')
0 files changed, 0 insertions, 0 deletions
-efi to install the EFI bootloader....Mathieu Othacehe 2020-05-29image: Add bootloader installation support....Mathieu Othacehe 2020-05-26image: Add partition file-system options support....Mathieu Othacehe 2020-05-26build: image: Add support for EXT2 and EXT3 file-systems....Mathieu Othacehe 2020-05-20linux-boot: Refactor boot-system....Maxim Cournoyer 2020-05-05Merge branch 'master' into core-updatesMarius Bakke 2020-05-05vm: Remove obsolete procedures....Mathieu Othacehe 2020-05-05image: Add a new API....Mathieu Othacehe 2020-05-05build: bootloader: Add install-efi procedure....Mathieu Othacehe 2020-05-05build: install: Do not set store GID....Mathieu Othacehe 2020-05-05build: install: Ignore chown exceptions....Mathieu Othacehe 2020-05-03file-systems: Fix UTF-16 handling in initrd....Danny Milosavljevic 2020-05-03file-systems: Fix F2FS volume name accessor....Danny Milosavljevic 2020-05-02Merge branch 'master' into core-updatesMarius Bakke 2020-05-02linux-boot: Allow the root file system to be mounted via NFS....Stefan 2020-05-02file-systems: Add support for F2FS....raingloom 2020-04-11vm: Make the device node procedure a parameter....Ludovic Courtès 2020-04-11linux-boot: Add 'make-hurd-device-nodes'....Ludovic Courtès 2020-04-11linux-boot: 'make-essential-device-nodes' root parameter is optional....Ludovic Courtès 2020-04-11vm: Preserve file permissions on /dev....Ludovic Courtès 2020-04-11vm: 'qemu-image' can pass options to the 'mkfs' command....Ludovic Courtès 2020-04-11vm: 'qemu-image' accepts a list of extra populate directives....Ludovic Courtès 2020-04-11install: 'populate-root-file-system' can be passed extra directives....Ludovic Courtès 2020-04-11Merge branch 'master' into core-updatesMarius Bakke 2020-04-10vm: Transparently compress iso9660 images....Tobias Geerinckx-Rice 2020-03-30Merge branch 'master' into core-updates...Marius Bakke 2020-03-27Merge branch 'master' into core-updates...Marius Bakke 2020-03-26vm: Distinguish between success and failure of the guest code....Ludovic Courtès ohover-highlight'> * gnu/system/shadow.scm (default-skeletons): Add ".guile". 2017-07-11system: Refer to native packages when appropriate.Ludovic Courtès * gnu/system/locale.scm (localedef-command): Use the native LIBC. * gnu/system/shadow.scm (default-skeletons): Use the native GUILE-WM. 2017-05-03ui: Rename '_' to 'G_'.Ludovic Courtès This avoids collisions with '_' when the latter is used as a 'match' pattern for instance. See <https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>. * guix/ui.scm: Rename '_' to 'G_'. * po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly. * build-aux/compile-all.scm (warnings): Remove 'format'. * gnu/packages.scm, gnu/services.scm, gnu/services/shepherd.scm, gnu/system.scm, gnu/system/shadow.scm, guix/gnupg.scm, guix/http-client.scm, guix/import/cpan.scm, guix/import/elpa.scm, guix/import/pypi.scm, guix/nar.scm, guix/scripts.scm, guix/scripts/archive.scm, guix/scripts/authenticate.scm, guix/scripts/build.scm, guix/scripts/challenge.scm, guix/scripts/container.scm, guix/scripts/container/exec.scm, guix/scripts/copy.scm, guix/scripts/download.scm, guix/scripts/edit.scm, guix/scripts/environment.scm, guix/scripts/gc.scm, guix/scripts/graph.scm, guix/scripts/hash.scm, guix/scripts/import.scm, guix/scripts/import/cpan.scm, guix/scripts/import/cran.scm, guix/scripts/import/crate.scm, guix/scripts/import/elpa.scm, guix/scripts/import/gem.scm, guix/scripts/import/gnu.scm, guix/scripts/import/hackage.scm, guix/scripts/import/nix.scm, guix/scripts/import/pypi.scm, guix/scripts/import/stackage.scm, guix/scripts/lint.scm, guix/scripts/offload.scm, guix/scripts/pack.scm, guix/scripts/package.scm, guix/scripts/perform-download.scm, guix/scripts/publish.scm, guix/scripts/pull.scm, guix/scripts/refresh.scm, guix/scripts/size.scm, guix/scripts/substitute.scm, guix/scripts/system.scm, guix/ssh.scm, guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`". 2017-02-01system: More 'file-append' instead of #~(string-append #$thing …).Ludovic Courtès * gnu/system/shadow.scm (<user-account>)[shell]: Use 'file-append'. (%base-user-accounts): Likewise. * gnu/system/grub.scm (%background-image): Likewise. 2017-02-01system: Create home directories once 'file-systems' is up.Ludovic Courtès Fixes <http://bugs.gnu.org/21108>. Reported by Andy Patterson <ajpatter@uwaterloo.ca> and Leo Famulari <leo@famulari.name>. * gnu/build/activation.scm (activate-users+groups)[activate-user]: Pass #:create-home? #t iff CREATE-HOME? and SYSTEM?. (activate-user-home): New procedure. * gnu/system/shadow.scm (account-shepherd-service): New procedure. (account-service-type)[extensions]: Add SHEPHERD-ROOT-SERVICE-TYPE extension. * gnu/tests/base.scm (run-basic-test)["home"] ["skeletons in home directories"]: New tests. * gnu/tests/install.scm (%separate-home-os, %separate-home-os-source) (%test-separate-home-os): New variables. 2016-08-28system: Do not create the home directory of "nobody".Ludovic Courtès Fixes <http://bugs.gnu.org/24275>. Reported by John Darrington <john@darrington.wattle.id.au>. * gnu/system/shadow.scm (%base-user-accounts): Add (create-home-directory? #f) for "nobody". 2016-08-28system: Add 'create-home-directory?' field to <user-account>.Ludovic Courtès * gnu/system/shadow.scm (<user-account>)[create-home-directory?]: New field. (user-account->gexp): Serialize it. * gnu/build/activation.scm (activate-users+groups)[activate-user]: Update 'match-lambda' pattern accordingly. Pass #:create-home? to 'ensure-user'. (add-user, modify-user, ensure-user): Add #:create-home? parameter and honor it. * doc/guix.texi (User Accounts): Document it. 2016-07-20Merge branch 'master' into core-updatesLudovic Courtès 2016-07-13system: Change the shell of 'nobody' to 'nologin'.Ludovic Courtès Fixes <http://bugs.gnu.org/23971>. Reported by Vincent Legoll <vincent.legoll@gmail.com>. * gnu/system/shadow.scm (%base-user-accounts): Add 'shell' field. Set 'home-directory' to "/nonexistent". 2016-07-12gnu: Switch to 'with-imported-modules'.Ludovic Courtès * gnu/services.scm (directory-union): Use 'with-imported-modules' instead of the '#:modules' argument of 'computed-file'. * gnu/services/base.scm (udev-rules-union): Likewise. * gnu/services/dbus.scm (system-service-directory): Likewise. * gnu/services/desktop.scm (wrapped-dbus-service): (polkit-directory): Likewise. * gnu/services/networking.scm (tor-configuration->torrc): Likewise. * gnu/services/xorg.scm (xorg-configuration-directory): Likewise. * gnu/system/install.scm (self-contained-tarball): Likewise. * gnu/system/linux-container.scm (container-script): Likewise. * gnu/system/linux-initrd.scm (expression->initrd): Likewise, and remove #:modules parameter. (flat-linux-module-directory): Use 'with-imported-modules'. (base-initrd): Likewise. * gnu/system/locale.scm (locale-directory): Likewise. * gnu/system/shadow.scm (default-skeletons): Likewise. * gnu/system/vm.scm (expression->derivation-in-linux-vm): Likewise. * gnu/tests/base.scm (run-basic-test): Likewise. * gnu/tests/install.scm (run-install): Likewise. * doc/guix.texi (Initial RAM Disk): Update 'expression->initrd' documentation.