daemon: Rename 'NIX_CONF_DIR' to 'GUIX_CONFIGURATION_DIRECTORY'.
Partly fixes <http://bugs.gnu.org/22459>. Reported by Jeff Mickey <j@codemac.net> and David Craven <david@craven.ch>. * nix/libstore/globals.cc (Settings::processEnvironment()): Change 'NIX_CONF_DIR' to 'GUIX_CONFIGURATION_DIRECTORY'. * nix/local.mk (libstore_a_CPPFLAGS): Likewise. * guix/config.scm.in (%config-directory): Likewise. * build-aux/test-env.in: Likewise. * gnu/packages/patches/hydra-automake-1.15.patch: Likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
8ac6282c4b
commit
9dd674db01
|
@ -69,16 +69,16 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The configuration directory, for import/export signing keys.
|
# The configuration directory, for import/export signing keys.
|
||||||
NIX_CONF_DIR="@GUIX_TEST_ROOT@/etc"
|
GUIX_CONFIGURATION_DIRECTORY="@GUIX_TEST_ROOT@/etc"
|
||||||
if [ ! -d "$NIX_CONF_DIR" ]
|
if [ ! -d "$GUIX_CONFIGURATION_DIRECTORY" ]
|
||||||
then
|
then
|
||||||
# Copy the keys so that the secret key has the right permissions (the
|
# Copy the keys so that the secret key has the right permissions (the
|
||||||
# daemon errors out when this is not the case.)
|
# daemon errors out when this is not the case.)
|
||||||
mkdir -p "$NIX_CONF_DIR"
|
mkdir -p "$GUIX_CONFIGURATION_DIRECTORY"
|
||||||
cp "@abs_top_srcdir@/tests/signing-key.sec" \
|
cp "@abs_top_srcdir@/tests/signing-key.sec" \
|
||||||
"@abs_top_srcdir@/tests/signing-key.pub" \
|
"@abs_top_srcdir@/tests/signing-key.pub" \
|
||||||
"$NIX_CONF_DIR"
|
"$GUIX_CONFIGURATION_DIRECTORY"
|
||||||
chmod 400 "$NIX_CONF_DIR/signing-key.sec"
|
chmod 400 "$GUIX_CONFIGURATION_DIRECTORY/signing-key.sec"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# A place to store data of the substituter.
|
# A place to store data of the substituter.
|
||||||
|
@ -100,7 +100,7 @@ then
|
||||||
NIX_LOCALSTATE_DIR NIX_LOG_DIR NIX_STATE_DIR NIX_DB_DIR \
|
NIX_LOCALSTATE_DIR NIX_LOG_DIR NIX_STATE_DIR NIX_DB_DIR \
|
||||||
NIX_ROOT_FINDER GUIX_BINARY_SUBSTITUTE_URL \
|
NIX_ROOT_FINDER GUIX_BINARY_SUBSTITUTE_URL \
|
||||||
GUIX_ALLOW_UNAUTHENTICATED_SUBSTITUTES \
|
GUIX_ALLOW_UNAUTHENTICATED_SUBSTITUTES \
|
||||||
NIX_CONF_DIR XDG_CACHE_HOME NIXPKGS
|
GUIX_CONFIGURATION_DIRECTORY XDG_CACHE_HOME NIXPKGS
|
||||||
|
|
||||||
# Launch the daemon without chroot support because is may be
|
# Launch the daemon without chroot support because is may be
|
||||||
# unavailable, for instance if we're not running as root.
|
# unavailable, for instance if we're not running as root.
|
||||||
|
|
|
@ -23,7 +23,7 @@ Automake's parallel test harness.
|
||||||
- HYDRA_HOME="$(top_srcdir)/src" \
|
- HYDRA_HOME="$(top_srcdir)/src" \
|
||||||
- HYDRA_CONFIG= \
|
- HYDRA_CONFIG= \
|
||||||
- NIX_REMOTE= \
|
- NIX_REMOTE= \
|
||||||
- NIX_CONF_DIR="$(abs_builddir)/nix/etc/nix" \
|
- GUIX_CONFIGURATION_DIRECTORY="$(abs_builddir)/nix/etc/nix" \
|
||||||
- NIX_STATE_DIR="$(abs_builddir)/nix/var/nix" \
|
- NIX_STATE_DIR="$(abs_builddir)/nix/var/nix" \
|
||||||
- NIX_MANIFESTS_DIR="$(abs_builddir)/nix/var/nix/manifests" \
|
- NIX_MANIFESTS_DIR="$(abs_builddir)/nix/var/nix/manifests" \
|
||||||
- NIX_STORE_DIR="$(abs_builddir)/nix/store" \
|
- NIX_STORE_DIR="$(abs_builddir)/nix/store" \
|
||||||
|
@ -39,7 +39,7 @@ Automake's parallel test harness.
|
||||||
+ HYDRA_HOME="$(top_srcdir)/src"; export HYDRA_HOME; \
|
+ HYDRA_HOME="$(top_srcdir)/src"; export HYDRA_HOME; \
|
||||||
+ HYDRA_CONFIG=; export HYDRA_CONFIG; \
|
+ HYDRA_CONFIG=; export HYDRA_CONFIG; \
|
||||||
+ NIX_REMOTE=; export NIX_REMOTE; \
|
+ NIX_REMOTE=; export NIX_REMOTE; \
|
||||||
+ NIX_CONF_DIR="$(abs_builddir)/nix/etc/nix"; export NIX_CONF_DIR; \
|
+ GUIX_CONFIGURATION_DIRECTORY="$(abs_builddir)/nix/etc/nix"; export GUIX_CONFIGURATION_DIRECTORY; \
|
||||||
+ NIX_STATE_DIR="$(abs_builddir)/nix/var/nix"; export NIX_STATE_DIR; \
|
+ NIX_STATE_DIR="$(abs_builddir)/nix/var/nix"; export NIX_STATE_DIR; \
|
||||||
+ NIX_MANIFESTS_DIR="$(abs_builddir)/nix/var/nix/manifests"; export NIX_MANIFESTS_DIR; \
|
+ NIX_MANIFESTS_DIR="$(abs_builddir)/nix/var/nix/manifests"; export NIX_MANIFESTS_DIR; \
|
||||||
+ NIX_STORE_DIR="$(abs_builddir)/nix/store"; export NIX_STORE_DIR; \
|
+ NIX_STORE_DIR="$(abs_builddir)/nix/store"; export NIX_STORE_DIR; \
|
||||||
|
|
|
@ -59,8 +59,8 @@
|
||||||
(or (getenv "NIX_STATE_DIR") "@guix_localstatedir@/guix"))
|
(or (getenv "NIX_STATE_DIR") "@guix_localstatedir@/guix"))
|
||||||
|
|
||||||
(define %config-directory
|
(define %config-directory
|
||||||
;; This must match `NIX_CONF_DIR' as defined in `nix/local.mk'.
|
;; This must match `GUIX_CONFIGURATION_DIRECTORY' as defined in `nix/local.mk'.
|
||||||
(or (getenv "NIX_CONF_DIR") "@guix_sysconfdir@/guix"))
|
(or (getenv "GUIX_CONFIGURATION_DIRECTORY") "@guix_sysconfdir@/guix"))
|
||||||
|
|
||||||
(define %guix-register-program
|
(define %guix-register-program
|
||||||
;; The 'guix-register' program.
|
;; The 'guix-register' program.
|
||||||
|
|
|
@ -67,7 +67,7 @@ void Settings::processEnvironment()
|
||||||
nixLogDir = canonPath(getEnv("NIX_LOG_DIR", NIX_LOG_DIR));
|
nixLogDir = canonPath(getEnv("NIX_LOG_DIR", NIX_LOG_DIR));
|
||||||
nixStateDir = canonPath(getEnv("NIX_STATE_DIR", NIX_STATE_DIR));
|
nixStateDir = canonPath(getEnv("NIX_STATE_DIR", NIX_STATE_DIR));
|
||||||
nixDBPath = getEnv("NIX_DB_DIR", nixStateDir + "/db");
|
nixDBPath = getEnv("NIX_DB_DIR", nixStateDir + "/db");
|
||||||
nixConfDir = canonPath(getEnv("NIX_CONF_DIR", NIX_CONF_DIR));
|
nixConfDir = canonPath(getEnv("GUIX_CONFIGURATION_DIRECTORY", GUIX_CONFIGURATION_DIRECTORY));
|
||||||
nixLibexecDir = canonPath(getEnv("NIX_LIBEXEC_DIR", NIX_LIBEXEC_DIR));
|
nixLibexecDir = canonPath(getEnv("NIX_LIBEXEC_DIR", NIX_LIBEXEC_DIR));
|
||||||
nixBinDir = canonPath(getEnv("NIX_BIN_DIR", NIX_BIN_DIR));
|
nixBinDir = canonPath(getEnv("NIX_BIN_DIR", NIX_BIN_DIR));
|
||||||
nixDaemonSocketFile = canonPath(nixStateDir + DEFAULT_SOCKET_PATH);
|
nixDaemonSocketFile = canonPath(nixStateDir + DEFAULT_SOCKET_PATH);
|
||||||
|
|
|
@ -106,7 +106,7 @@ libstore_a_CPPFLAGS = \
|
||||||
-DNIX_DATA_DIR=\"$(datadir)\" \
|
-DNIX_DATA_DIR=\"$(datadir)\" \
|
||||||
-DNIX_STATE_DIR=\"$(localstatedir)/guix\" \
|
-DNIX_STATE_DIR=\"$(localstatedir)/guix\" \
|
||||||
-DNIX_LOG_DIR=\"$(localstatedir)/log/guix\" \
|
-DNIX_LOG_DIR=\"$(localstatedir)/log/guix\" \
|
||||||
-DNIX_CONF_DIR=\"$(sysconfdir)/guix\" \
|
-DGUIX_CONFIGURATION_DIRECTORY=\"$(sysconfdir)/guix\" \
|
||||||
-DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \
|
-DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \
|
||||||
-DNIX_BIN_DIR=\"$(bindir)\" \
|
-DNIX_BIN_DIR=\"$(bindir)\" \
|
||||||
-DOPENSSL_PATH="\"guix-authenticate\"" \
|
-DOPENSSL_PATH="\"guix-authenticate\"" \
|
||||||
|
|
Loading…
Reference in New Issue