Remove unusual space from shebang line (#2834)

This commit is contained in:
Casper 2022-10-17 10:40:09 +02:00 committed by GitHub
parent 284c44faa9
commit a930aeb18a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
64 changed files with 67 additions and 67 deletions

View file

@ -1,4 +1,4 @@
#! /bin/bash
#!/bin/bash
function _setup
{
@ -868,7 +868,7 @@ function _setup_security_stack
sa-update --import /etc/spamassassin/kam/kam.sa-channels.mcgrail.com.key
cat >"${SPAMASSASSIN_KAM_CRON_FILE}" <<"EOM"
#! /bin/bash
#!/bin/bash
RESULT=$(sa-update --gpgkey 24C063D8 --channel kam.sa-channels.mcgrail.com 2>&1)
EXIT_CODE=${?}
@ -982,7 +982,7 @@ function _setup_mail_summary
_log 'trace' 'Creating daily cron job for pflogsumm report'
cat >/etc/cron.daily/postfix-summary << EOM
#! /bin/bash
#!/bin/bash
/usr/local/bin/report-pflogsumm-yesterday ${HOSTNAME} ${PFLOGSUMM_RECIPIENT} ${PFLOGSUMM_SENDER}
EOM
@ -1030,7 +1030,7 @@ function _setup_logwatch
fi
cat >"${LOGWATCH_FILE}" << EOM
#! /bin/bash
#!/bin/bash
/usr/sbin/logwatch ${INTERVAL} --hostname ${HOSTNAME} --mailto ${LOGWATCH_RECIPIENT}
EOM