summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-04-17 14:57:38 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-04-17 14:57:38 -0400
commit0d7d26fb58525411847795e65ce4ce6260349732 (patch)
tree7e53ff884a76a7f536fa069d605bce21d6b6aaf0
parentf3add3749351c9070e0fbe43f37b5a94ac1e7123 (diff)
tidy
-rwxr-xr-xcron-jobs/check_archlinux/check_packages.py2
-rw-r--r--cron-jobs/db-update-mailer26
2 files changed, 1 insertions, 27 deletions
diff --git a/cron-jobs/check_archlinux/check_packages.py b/cron-jobs/check_archlinux/check_packages.py
index ac0194f..d233bf6 100755
--- a/cron-jobs/check_archlinux/check_packages.py
+++ b/cron-jobs/check_archlinux/check_packages.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/python2
#
# check_archlinux.py
#
diff --git a/cron-jobs/db-update-mailer b/cron-jobs/db-update-mailer
deleted file mode 100644
index 35ff204..0000000
--- a/cron-jobs/db-update-mailer
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-# Dummy helper to send email to parabola-dev
-# It does nothing if no output
-# Aurélien DESBRIERES <aurelien@xload.io>
-# 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