From 56694a1e73a5c91df075fa3307bdd40a9d1e520f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Sat, 26 Sep 2015 14:43:03 -0300 Subject: import changes from repo --- cron-jobs/db-update-mailer | 26 ++++++++++++++++++++++++++ cron-jobs/db-update-mailer~ | 28 ++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 cron-jobs/db-update-mailer create mode 100644 cron-jobs/db-update-mailer~ (limited to 'cron-jobs') diff --git a/cron-jobs/db-update-mailer b/cron-jobs/db-update-mailer new file mode 100644 index 0000000..35ff204 --- /dev/null +++ b/cron-jobs/db-update-mailer @@ -0,0 +1,26 @@ +#!/bin/bash +# Dummy helper to send email to parabola-dev +# It does nothing if no output +# Aurélien DESBRIERES +# GPL v3 or later. +# testing version !!! + +LIST="maintenance@lists.parabolagnulinux.org" +FROM="maintenance@lists.parabolagnulinux.org" + +SUBJECT="Database Updated $(date +"%d-%m-%Y")" +if [ $db-update 1 ]; then + SUBJECT="$1 $(date +"%d-%m-%Y")" +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 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 -- cgit v1.2.3