Added to repository.

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@758 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2009-04-08 09:15:13 +00:00
parent 411301293a
commit 29a42b7433
2 changed files with 21 additions and 0 deletions

View File

@@ -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"

14
nightly/conf/cellbuzz.sendmail Executable file
View File

@@ -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