12 lines
291 B
Text
12 lines
291 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if [ -x /usr/bin/perl ]; then
|
||
|
/usr/sbin/opendkim-genkey.pl
|
||
|
else
|
||
|
echo ""
|
||
|
echo "Perl is required for running this script. Install Perl or run"
|
||
|
echo "this script on another computer that has Perl with File::Basename"
|
||
|
echo "and Getopt::Long modules installed."
|
||
|
echo ""
|
||
|
fi
|