network/dkimproxy: Replaced backtick cmdsub.

Signed-off-by: B. Watson <urchlay@slackware.uk>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2024-07-15 04:08:30 -04:00 committed by Willy Sudiarto Raharjo
parent 04afade209
commit 559cf5491c
No known key found for this signature in database
GPG key ID: 3F617144D7238786

View file

@ -71,7 +71,7 @@ fi
set -e
# Bail if the user or group dkim is not on the system
if [ ! `/usr/bin/getent passwd dkim` ]; then
if [ ! "$( /usr/bin/getent passwd dkim )" ]; then
cat << EOF
@ -84,7 +84,7 @@ EOF
exit
elif [ ! `/usr/bin/getent group dkim` ]; then
elif [ ! "$( /usr/bin/getent group dkim )" ]; then
cat << EOF