Initial version of abusehelper module

This commit is contained in:
Ossi Salmi 2010-11-09 18:16:41 +02:00 committed by Timo Mkinen
parent b1e8479b74
commit d623f603be

View file

@ -0,0 +1,19 @@
# Install abusehelper from svn.
#
class abusehelper {
if !$abusehelper_revision {
fail("\$abusehelper_revision must be set.")
}
include svn::client
svn::export { "/usr/local/src/abusehelper":
source => "http://abusehelper.googlecode.com/svn/trunk",
revision => $abusehelper_revision,
}
python::setup::install { "/usr/local/src/abusehelper":
require => Svn::Export["/usr/local/src/abusehelper"],
}
}