From b5617c72dcb431f30bbc196d56de1771d454d90d Mon Sep 17 00:00:00 2001
From: Donald Buczek <buczek@molgen.mpg.de>
Date: Tue, 28 Jan 2020 12:25:01 +0100
Subject: [PATCH] create_job_tmpdir: Add Quiet option

Avoid output from mkfs.ext4 in the mxqd logfile by using the
Quiet (`-q`) option.
---
 helper/create_job_tmpdir | 1 +
 1 file changed, 1 insertion(+)

diff --git a/helper/create_job_tmpdir b/helper/create_job_tmpdir
index ba97f29c..3d74e3e1 100755
--- a/helper/create_job_tmpdir
+++ b/helper/create_job_tmpdir
@@ -24,6 +24,7 @@ status=1;
 if fallocate -l ${MXQ_SIZE}G $filename; then
     if loopdevice=$(losetup --find --show $filename); then
         if mkfs.ext4 \
+                -q \
                 -m 0 \
                 -E nodiscard,mmp_update_interval=300,lazy_journal_init=1,root_owner=$MXQ_UID:0 \
                 -O '64bit,ext_attr,filetype,^has_journal,huge_file,inline_data,^mmp,^quota,sparse_super2' \