From 002f1872b41080405477f63d987227069efac6fa Mon Sep 17 00:00:00 2001 From: Ali Afsharzadeh Date: Wed, 3 Dec 2025 10:50:33 +0330 Subject: [PATCH] Fix /dev/null redirection typo in systemctl command --- .scripts/postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/postinst b/.scripts/postinst index 36b7bb079..20d8ae9a5 100755 --- a/.scripts/postinst +++ b/.scripts/postinst @@ -10,6 +10,6 @@ useradd --system \ --comment "MongoDB Exporter" \ mongodb_exporter -systemctl daemon-reload > dev/null || exit $? +systemctl daemon-reload > /dev/null || exit $? exit 0