# GNU Guix --- Functional package management for GNU # Copyright © 2013, 2014, 2015 Ludovic Courtès # # This file is part of GNU Guix. # # GNU Guix is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # GNU Guix is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Guix. If not, see . # # Test the 'guix archive' command-line utility. # guix archive --version archive="t-archive-$$" archive_alt="t-archive-alt-$$" tmpdir="t-archive-dir-$$" rm -f "$archive" "$archive_alt" rm -rf "$tmpdir" trap 'rm -f "$archive" "$archive_alt"; rm -rf "$tmpdir"' EXIT guix archive --export guile-bootstrap > "$archive" guix archive --export guile-bootstrap:out > "$archive_alt" cmp "$archive" "$archive_alt" guix archive --export \ -e '(@ (gnu packages bootstrap) %bootstrap-guile)' > "$archive_alt" cmp "$archive" "$archive_alt" guix archive --export `guix build guile-bootstrap` > "$archive_alt" cmp "$archive" "$archive_alt" # Check the exit value upon import. guix archive --import < "$archive" if guix archive something-that-does-not-exist then false; else true; fi # This one must not be listed as missing. guix build guile-bootstrap > "$archive" guix archive --missing < "$archive" test "`guix archive --missing < "$archive"`" = "" # Two out of three should be listed as missing. echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo" >> "$archive" echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-bar" >> "$archive" guix archive --missing < "$archive" > "$archive_alt" echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo" > "$archive" echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-bar" >> "$archive" cmp "$archive" "$archive_alt" # This is not a valid store file name, so an error. echo something invalid > "$archive" if guix archive --missing < "$archive" then false; else true; fi # Check '--extract'. guile -c "(use-modules (guix serialization)) (call-with-output-file \"$archive\" (lambda (port) (write-file \"$(guix build guile-bootstrap)\" port)))" guix archive -x "$tmpdir" < "$archive" test -x "$tmpdir/bin/guile" test -d "$tmpdir/lib/guile" if echo foo | guix archive --authorize then false; else true; fi c694f69c79dde3867&showmsg=1'>Expand)Author 2020-08-01services: postgresql: Provide postgresql commands....Pierre Neidhardt 2020-01-17gnu: services: Allow extra content in mysql configuration....Alex Sassmannshausen 2020-01-14gnu: services: Fix mysql service activation....Julien Lepiller 2019-07-02gnu: postgres service: More secure default permissions....Robert Vollmert 2018-10-04gnu: postgresql: Add extension-packages....Julien Lepiller 2018-08-13services: postgresql: Get the Shepherd to respawn PostgreSQL....Clément Lassieur 2018-03-17services: databases: Change quote' to single-quote....Christopher Baines 2018-03-10services: databases: Add postgresql-configuration record exports....Christopher Baines 2018-03-10services: Rework the PostgreSQL config file to use a record type....Christopher Baines 2018-03-03services: redis: Add a default-value to the redis-service-type....Christopher Baines 2018-03-03services: mysql: Add a default-value to the mysql-service-type....Christopher Baines 2018-03-03services: postgresql: Add a default-value to the postgresql-service-type....Christopher Baines 2018-01-25services: postgresql: Use pg_ctl to start and stop postgres....Clément Lassieur 2017-10-06services: Add MongoDB....Christopher Baines 2017-08-15gnu: Fix memcached service startup....Christopher Baines 2017-07-30services: Add memcached....Christopher Baines