From 1a14c7e1605b8177b1bfbd8afdfd39f3a01f0ba8 Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Wed, 24 Apr 2024 11:09:46 -0300 Subject: [PATCH] chore: remove do-nothing cron script --- bin/mm_hourly | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 bin/mm_hourly diff --git a/bin/mm_hourly b/bin/mm_hourly deleted file mode 100755 index e371fd611b..0000000000 --- a/bin/mm_hourly +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -# Hourly datatracker jobs, ***run as mailman*** -# -# This script is expected to be triggered by cron from -# $DTDIR/etc/cron.d/datatracker which should be symlinked from -# /etc/cron.d/ - -export LANG=en_US.UTF-8 -export PYTHONIOENCODING=utf-8 - -# Make sure we stop if something goes wrong: -program=${0##*/} -trap 'echo "$program($LINENO): Command failed with error code $? ([$$] $0 $*)"; exit 1' ERR - -DTDIR=/a/www/ietf-datatracker/web -cd $DTDIR/ - -# Set up the virtual environment -source $DTDIR/env/bin/activate - -logger -p user.info -t cron "Running $DTDIR/bin/mm_hourly" -