mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-08 15:34:46 +08:00
18 lines
No EOL
270 B
Bash
Executable file
18 lines
No EOL
270 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
if ! hash netstat; then
|
|
echo "netstat not found!" >2
|
|
exit 1
|
|
fi
|
|
|
|
if ! hash nc; then
|
|
echo "netcat not found!" >2
|
|
exit 1
|
|
fi
|
|
|
|
if ! hash pluginviewer && ! hash saslpluginviewer; then
|
|
echo "pluginviewer not found!" >2
|
|
exit 1
|
|
fi |