From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel =?utf-8?q?Weism=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH 2/4] xt_geoip_update: Use /var/tmp for temporary data Date: Mon, 14 Oct 2019 16:47:54 +0200 Message-ID: <20191014144756.7674-2-daniel.weismueller@ipfire.org> In-Reply-To: <20191014144756.7674-1-daniel.weismueller@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8556793996480390182==" List-Id: --===============8556793996480390182== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Since we have some systems that are restricted to only 2GB of space on /, we need to move this to where we have enough space. Signed-off-by: Daniel Weism=C3=BCller --- src/scripts/xt_geoip_update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/xt_geoip_update b/src/scripts/xt_geoip_update index f3ba8a52e..f633229fb 100644 --- a/src/scripts/xt_geoip_update +++ b/src/scripts/xt_geoip_update @@ -19,7 +19,7 @@ # = # ############################################################################= ### =20 -TMP_PATH=3D$(mktemp -d) +TMP_PATH=3D$(mktemp -dp /var/tmp) TMP_FILE=3D$(mktemp -p $TMP_PATH) =20 SCRIPT_PATH=3D/usr/local/bin --=20 2.12.2 --===============8556793996480390182==--