summaryrefslogtreecommitdiff
path: root/cron-jobs/db-update-mailer~
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-09-26 14:43:03 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-09-26 14:43:03 -0300
commit56694a1e73a5c91df075fa3307bdd40a9d1e520f (patch)
treeeb8c04e1af6ffc248a49d213f846ad8da1e19cb0 /cron-jobs/db-update-mailer~
parent3bc03bbdce0ad13d6db6c2a35ea3a2e7333004b7 (diff)
import changes from repo
Diffstat (limited to 'cron-jobs/db-update-mailer~')
-rw-r--r--cron-jobs/db-update-mailer~28
1 files changed, 28 insertions, 0 deletions
diff --git a/cron-jobs/db-update-mailer~ b/cron-jobs/db-update-mailer~
new file mode 100644
index 0000000..ca2e46b
--- /dev/null
+++ b/cron-jobs/db-update-mailer~
@@ -0,0 +1,28 @@
+#!/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