mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
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:
parent
04afade209
commit
559cf5491c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue