daemon: Always default to gzip for log compression.
* nix/libstore/globals.cc (Settings::Settings): Have 'logCompression' default to COMPRESSION_GZIP unconditionally. * gnu/services/base.scm (<guix-configuration>)[log-compression]: Default to 'gzip. * doc/guix.texi (Invoking guix-daemon, Base Services): Adjust accordingly.
parent
775203e520
commit
575e52ac2b
|
@ -1705,7 +1705,7 @@ Compress build logs according to @var{type}, one of @code{gzip},
|
||||||
|
|
||||||
Unless @option{--lose-logs} is used, all the build logs are kept in the
|
Unless @option{--lose-logs} is used, all the build logs are kept in the
|
||||||
@var{localstatedir}. To save space, the daemon automatically compresses
|
@var{localstatedir}. To save space, the daemon automatically compresses
|
||||||
them with Bzip2 by default.
|
them with gzip by default.
|
||||||
|
|
||||||
@item --discover[=yes|no]
|
@item --discover[=yes|no]
|
||||||
Whether to discover substitute servers on the local network using mDNS
|
Whether to discover substitute servers on the local network using mDNS
|
||||||
|
@ -16623,7 +16623,7 @@ The number of seconds of silence and the number of seconds of activity,
|
||||||
respectively, after which a build process times out. A value of zero
|
respectively, after which a build process times out. A value of zero
|
||||||
disables the timeout.
|
disables the timeout.
|
||||||
|
|
||||||
@item @code{log-compression} (default: @code{'bzip2})
|
@item @code{log-compression} (default: @code{'gzip})
|
||||||
The type of compression used for build logs---one of @code{gzip},
|
The type of compression used for build logs---one of @code{gzip},
|
||||||
@code{bzip2}, or @code{none}.
|
@code{bzip2}, or @code{none}.
|
||||||
|
|
||||||
|
|
|
@ -1566,7 +1566,7 @@ archive' public keys, with GUIX."
|
||||||
(timeout guix-configuration-timeout ;integer
|
(timeout guix-configuration-timeout ;integer
|
||||||
(default 0))
|
(default 0))
|
||||||
(log-compression guix-configuration-log-compression
|
(log-compression guix-configuration-log-compression
|
||||||
(default 'bzip2))
|
(default 'gzip))
|
||||||
(discover? guix-configuration-discover?
|
(discover? guix-configuration-discover?
|
||||||
(default #f))
|
(default #f))
|
||||||
(extra-options guix-configuration-extra-options ;list of strings
|
(extra-options guix-configuration-extra-options ;list of strings
|
||||||
|
|
|
@ -45,11 +45,7 @@ Settings::Settings()
|
||||||
useChroot = false;
|
useChroot = false;
|
||||||
impersonateLinux26 = false;
|
impersonateLinux26 = false;
|
||||||
keepLog = true;
|
keepLog = true;
|
||||||
#if HAVE_BZLIB_H
|
|
||||||
logCompression = COMPRESSION_BZIP2;
|
|
||||||
#else
|
|
||||||
logCompression = COMPRESSION_GZIP;
|
logCompression = COMPRESSION_GZIP;
|
||||||
#endif
|
|
||||||
maxLogSize = 0;
|
maxLogSize = 0;
|
||||||
cacheFailure = false;
|
cacheFailure = false;
|
||||||
pollInterval = 5;
|
pollInterval = 5;
|
||||||
|
|
Reference in New Issue