diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-07-08 22:37:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-07-08 22:37:02 +0200 |
commit | 4ca0cefd1bb4dcc0df29a5e6d57d79b421e10951 (patch) | |
tree | e59ffc24df4d9177894d8ed692e7165d165266e3 | |
parent | 2c9143a1f37ee9fdc2fc03c42f07d4b1eb9eada7 (diff) | |
download | guix-4ca0cefd1bb4dcc0df29a5e6d57d79b421e10951.tar.gz |
build: Set the umask to 0022 before running the daemon for tests.
* test-env.in: Run "umask 0022" before running the daemon. Reported by Matthew Lien - 練喆明 <bluet@bluet.org>
-rw-r--r-- | test-env.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test-env.in b/test-env.in index 64440fb86a..e6b13c271e 100644 --- a/test-env.in +++ b/test-env.in @@ -56,6 +56,10 @@ then # Do that because store.scm calls `canonicalize-path' on it. mkdir -p "$NIX_STORE_DIR" + # Set the umask to avoid "suspicious ownership or permission" errors. + # See <http://lists.gnu.org/archive/html/bug-guix/2013-07/msg00033.html>. + umask 0022 + # Launch the daemon without chroot support because is may be # unavailable, for instance if we're not running as root. "@abs_top_builddir@/pre-inst-env" \ |