aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/examples
ModeNameSize
-rw-r--r--asus-c201.tmpl2237logplainabout
-rw-r--r--bare-bones.tmpl1916logplainabout
-rw-r--r--bare-hurd.tmpl2079logplainabout
-rw-r--r--beaglebone-black.tmpl2176logplainabout
-rw-r--r--desktop.tmpl2875logplainabout
-rw-r--r--docker-image.tmpl1570logplainabout
-rw-r--r--lightweight-desktop.tmpl2153logplainabout
-rw-r--r--vm-image.tmpl3996logplainabout
-rw-r--r--yggdrasil.tmpl2295logplainabout
mmit/tests/guix-daemon.sh?id=5cefb13ddd4d51a63a387e74c138035b7b8b8537'>guix-daemon: Disable garbage collection for remote connections....* nix/nix-daemon/nix-daemon.cc (isRemoteConnection): New variable. (performOp): For wopCollectGarbage, throw an error when isRemoteConnection is set. (acceptConnection): Set isRemoteConnection when connection is not AF_UNIX. * tests/guix-daemon.sh: Add a test for the new behavior. Roel Janssen 2018-01-07daemon: Add gzip log compression....* nix/nix-daemon/guix-daemon.cc (GUIX_OPT_LOG_COMPRESSION): New macro. (options): Mark "disable-log-compression" as hidden and add "log-compression". (parse_opt): Handle GUIX_OPT_LOG_COMPRESSION. * nix/libstore/build.cc (DerivationGoal): Add 'gzLogFile'. (openLogFile): Initialize it when 'logCompression' is COMPRESSION_GZIP. (closeLogFile, handleChildOutput): Honor 'gzLogFile'. * nix/libstore/globals.hh (Settings)[compressLog]: Remove. [logCompression]: New field. (CompressionType): New enum. * nix/libstore/globals.cc (Settings::Settings): Initialize it. (update): Remove '_get' call for 'compressLog'. * nix/local.mk (guix_daemon_LDADD, guix_register_LDADD): Add -lz. * guix/store.scm (log-file): Handle '.gz' log files. * tests/guix-daemon.sh: Add test with '--log-compression=gzip'. * doc/guix.texi (Invoking guix-daemon): Adjust accordingly. * config-daemon.ac: Check for libz and zlib.h. Ludovic Courtès