aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPjotr Prins2024-04-01 02:54:46 -0500
committerPjotr Prins2024-04-01 02:54:51 -0500
commit831cf86b4fbf7b054640fa46eede6040ad01340f (patch)
tree94dd5dadb62009e07a327db4986bdd94b1df4676
parent0d551870499c886f900a5b87b2040db25e9a00cc (diff)
downloadgn-machines-831cf86b4fbf7b054640fa46eede6040ad01340f.tar.gz
Share TMPDIR between GN2 and GN3
-rwxr-xr-xfallback-deploy.sh3
-rw-r--r--genenetwork/services/genenetwork.scm14
2 files changed, 17 insertions, 0 deletions
diff --git a/fallback-deploy.sh b/fallback-deploy.sh
index 6e2e9e9..5419d0f 100755
--- a/fallback-deploy.sh
+++ b/fallback-deploy.sh
@@ -23,6 +23,8 @@
echo Build and install genenetwork fallback container on $HOSTNAME
+mkdir -p /export2/guix-containers/genenetwork/tmp
+touch /export2/guix-containers/genenetwork/tmp/fallback-tmp
mkdir -p /export2/guix-containers/genenetwork/var/lib/acme
mkdir -p /export2/guix-containers/genenetwork/etc/genenetwork
mkdir -p /export2/data/genenetwork-xapian
@@ -35,6 +37,7 @@ container_script=$(guix system container \
--load-path=. \
--verbosity=3 \
--share=/export2/guix-containers/genenetwork/var/lib/acme=/var/lib/acme \
+ --share=/export2/guix-containers/genenetwork/tmp=/var/tmp \
--share=/export2/guix-containers/genenetwork/etc/genenetwork=/etc/genenetwork \
--share=/export/data/genenetwork-xapian \
--share=/export/data/genenetwork-sqlite \
diff --git a/genenetwork/services/genenetwork.scm b/genenetwork/services/genenetwork.scm
index 0fc2fae..6a691b8 100644
--- a/genenetwork/services/genenetwork.scm
+++ b/genenetwork/services/genenetwork.scm
@@ -231,6 +231,9 @@ object."
(name "GN2_PROFILE")
(value gn2-profile))
(environment-variable
+ (name "TMPDIR")
+ (value "/tmp"))
+ (environment-variable
(name "GN2_SETTINGS")
(value gn2-conf))
(environment-variable
@@ -243,6 +246,10 @@ object."
(file-system-mapping
(source gn-sourcecode-directory)
(target source))
+ (file-system-mapping ; GN2 and GN3 need to share TMPDIR
+ (source "/tmp")
+ (target "/tmp")
+ (writable? #t))
(file-system-mapping
(source gn2-conf)
(target source))
@@ -268,6 +275,9 @@ object."
(name "GN3_CONF")
(value gn3-conf))
(environment-variable
+ (name "TMPDIR")
+ (value "/tmp"))
+ (environment-variable
(name "GN3_SECRETS")
(value gn3-secrets))
(environment-variable
@@ -286,6 +296,10 @@ object."
(file-system-mapping
(source gn3-data-directory)
(target source))
+ (file-system-mapping ; GN2 and GN3 need to share TMPDIR
+ (source "/tmp")
+ (target "/tmp")
+ (writable? #t))
(file-system-mapping
(source xapian-db)
(target source))