summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-04-17 01:12:04 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-04-17 01:12:04 -0400
commit8daed438c73d0354cf45ffbd304489ee26b5d9a2 (patch)
treec84a3f8bf1e2e21a989d5a22d5e794bdc4638bb2
parent86b3d7c0cdff042fd33e7705e6ef756415b86bd4 (diff)
remove editor backup file
-rw-r--r--cron-jobs/db-update-mailer~28
1 files changed, 0 insertions, 28 deletions
diff --git a/cron-jobs/db-update-mailer~ b/cron-jobs/db-update-mailer~
deleted file mode 100644
index ca2e46b..0000000
--- a/cron-jobs/db-update-mailer~
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-#Dummy helper to send email to arch-dev
-# It does nothing if no output
-
-LIST="arch-dev-public@archlinux.org"
-#LIST="aaronmgriffin@gmail.com"
-FROM="repomaint@archlinux.org"
-
-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