aboutsummaryrefslogtreecommitdiff
path: root/tests/upstream.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-05-11 00:22:15 +0200
committerLudovic Courtès <ludo@gnu.org>2022-05-11 00:50:51 +0200
commitdba78c32a7ad26b1210e4471b9cb4be4d2ea74e3 (patch)
tree6c386dae10e6caebdbba3dab0e72c4a501f18ab3 /tests/upstream.scm
parent427afa650170133c4888878f55d245d8047c58e2 (diff)
downloadguix-dba78c32a7ad26b1210e4471b9cb4be4d2ea74e3.tar.gz
guix-dba78c32a7ad26b1210e4471b9cb4be4d2ea74e3.zip
gnu: python-cryptography: Bump 'rust-redox-syscall' dependency.
Fixes a build failure. * gnu/packages/python-crypto.scm (python-cryptography): Replace 'rust-redox-syscall-0.1' with 'rust-redox-syscall-0.2'.
Diffstat (limited to 'tests/upstream.scm')
0 files changed, 0 insertions, 0 deletions
es.scm?id=6230e155afd8c43c12ee3f03032aac34433db11a'>gnu: Fix memcached service startup....Memcached changes to the memcached user from root before writing the PID file. This means that it must be able to write the PID file as the memcached user. To make this work, create the /var/run/memcached directory when the service starts, make it owned by memcached, and change memcached to write the PID file to /var/run/memcached/pid. This wasn't picked up by the system test as the "service running" part was too permissive, and only failed on an error. Instead, test the response from calling start-service and check that the PID is a number. * gnu/services/databases.scm (memcached-activation): New variable. (memcached-shepherd-service): Change PID file location. (memcached-service-type): Extend the activation-service-type. * gnu/tests/databases.scm (run-memcached-test)[test]: Change the "service running" test to check the response from the shepherd. Christopher Baines 2017-07-30services: Add memcached....* gnu/services/databases.scm (memcached-service-type, %memcached-accounts): New variables. (<memcached-configuration>): New record type. (memcached-service-type): New procedures. * gnu/tests/databases.scm: New file. * doc/guix.texi (Database Services): Document the new memcached service. * gnu/local.mk (GNU_SYSTEM_MODULES): Add entry for tests/databases.scm. Christopher Baines