From 29a42b7433cdddcfed27db5fd3f94681f5d2138c Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 8 Apr 2009 09:15:13 +0000 Subject: [PATCH] Added to repository. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@758 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- nightly/conf/cellbuzz.conf | 7 +++++++ nightly/conf/cellbuzz.sendmail | 14 ++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 nightly/conf/cellbuzz.conf create mode 100755 nightly/conf/cellbuzz.sendmail diff --git a/nightly/conf/cellbuzz.conf b/nightly/conf/cellbuzz.conf new file mode 100644 index 000000000..db293aaf3 --- /dev/null +++ b/nightly/conf/cellbuzz.conf @@ -0,0 +1,7 @@ + +# Specifics for the Cellbuzz system. + +ABT_DETAILS="x86_64, Fedora 10" +ABT_JOBS=3 +#ABT_KERNELS="2.6.29.1 2.6.28.9 2.6.27.21 2.6.26.8 2.6.25.20 2.6.24.7 2.6.23.17" +ABT_KERNELS="2.6.29.1 2.6.27.21 2.6.25.20 2.6.23.17" diff --git a/nightly/conf/cellbuzz.sendmail b/nightly/conf/cellbuzz.sendmail new file mode 100755 index 000000000..c9ce53545 --- /dev/null +++ b/nightly/conf/cellbuzz.sendmail @@ -0,0 +1,14 @@ +#!/bin/sh + +# usage: $0 subject file-to-mail [file-to-attach] +# Don't forget to set the variables 'from' and 'realname' in ~/.muttrc !! + +recipients="scst-devel@lists.sourceforge.net" +#recipients="bart.vanassche@gmail.com" +if [ $# -ge 3 ]; then + gzip -9 <"$3" >"$3.gz" + mutt -s "$1" -a "$3.gz" ${recipients} < "$2" + rm -f "$3.gz" +else + mutt -s "$1" ${recipients} < "$2" +fi