summaryrefslogtreecommitdiff
path: root/extra/lukeshu-xbs/cron-jobs/devlist-mailer
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-08-26 04:39:17 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-08-26 04:39:17 -0300
commitb878c56002c5777dcbf6d713b0002aead5169286 (patch)
tree63d81edf3a21bd76f78f872709f6da5ce5aae582 /extra/lukeshu-xbs/cron-jobs/devlist-mailer
parente1f1ba1883d5cd76f0a1de7ce0c39af971bf79bb (diff)
remove more duplicated files
Diffstat (limited to 'extra/lukeshu-xbs/cron-jobs/devlist-mailer')
-rwxr-xr-xextra/lukeshu-xbs/cron-jobs/devlist-mailer27
1 files changed, 0 insertions, 27 deletions
diff --git a/extra/lukeshu-xbs/cron-jobs/devlist-mailer b/extra/lukeshu-xbs/cron-jobs/devlist-mailer
deleted file mode 100755
index 7f298b9..0000000
--- a/extra/lukeshu-xbs/cron-jobs/devlist-mailer
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-#Dummy helper to send email to arch-dev
-# It does nothing if no output
-
-# Load $LIST and $FROM from the config file
-. "$(dirname "$(readlink -e "$0")")/../config"
-
-SUBJECT="Repository Maintenance $(date +"%d-%m-%Y")"
-if [ $# -ge 1 ]; then
- SUBJECT="$1 $(date +"%d-%m-%Y")"
-fi
-
-if [ $# -ge 2 ]; then
- LIST="$2"
-fi
-
-stdin="$(cat)"
-#echo used to strip whitespace for checking for actual data
-if [ -n "$(echo $stdin)" ]; then
-
- echo "Subject: $SUBJECT
-To: $LIST
-From: $FROM
-
-$stdin" | /usr/sbin/sendmail -F"$FROM" "$LIST"
-
-fi