aboutsummaryrefslogtreecommitdiff
path: root/tools/boca-submit-run-cron
blob: ace21d037b327365ea5d32f742095d56316e9d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

if [ "`id -u`" != "0" ]; then
  echo "Must be run as root"
  exit 1
fi

if [ -d /root/submissions ]; then
	runaux=`which boca-submit-run-aux`
	if [ "$runaux" == "" ]; then
		runaux=/var/www/boca/tools/boca-submit-run-aux
	fi

	for i in `ls /root/submissions/*.bocarun`; do
		$runaux "$i"
	done
fi