mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-14 09:11:27 +00:00
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:
7
nightly/conf/cellbuzz.conf
Normal file
7
nightly/conf/cellbuzz.conf
Normal 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
14
nightly/conf/cellbuzz.sendmail
Executable 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
|
||||
Reference in New Issue
Block a user