From 3fa9db516eaae4916416a1b6a60bdba1044c635e Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Sat, 24 Sep 2022 10:01:53 -0400 Subject: [PATCH] Remove redundant directory in mkdir -p Since -p creates parents, the first one isn't necessary. --- setup/mail-postfix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/mail-postfix.sh b/setup/mail-postfix.sh index 9a3b620f..5787e8c9 100755 --- a/setup/mail-postfix.sh +++ b/setup/mail-postfix.sh @@ -251,7 +251,7 @@ if [ ! -d $STORAGE_ROOT/mail/postgrey/db ]; then # Stop the service service postgrey stop # Ensure the new paths for postgrey db exists - mkdir -p $STORAGE_ROOT/mail/postgrey $STORAGE_ROOT/mail/postgrey/db + mkdir -p $STORAGE_ROOT/mail/postgrey/db # Move over database files mv /var/lib/postgrey/* $STORAGE_ROOT/mail/postgrey/db/ || true fi