diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-03-13 21:09:29 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-03-13 21:09:29 +0000 |
commit | c74fd81b0f8f8efe363389e2af2be9c07625dd16 (patch) | |
tree | ffc8d69fbb9852ae87d35b92b85f63a803ef8d34 | |
parent | 271a8d2553c21c50d168b2cc7b69fd41f58bc330 (diff) | |
download | puppet-c74fd81b0f8f8efe363389e2af2be9c07625dd16.tar.gz puppet-c74fd81b0f8f8efe363389e2af2be9c07625dd16.tar.xz puppet-c74fd81b0f8f8efe363389e2af2be9c07625dd16.zip |
Committing the EPM support. I am in the process of moving this to a common library that all of my projects can use.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1025 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r-- | Rakefile | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,6 +1,18 @@ # -*- ruby -*- (Make emacs happy) # Rakefile for Puppet +PKG = "puppet" +RPMHOST = "fedora1" +PKGHOST = "culain" + +begin + require 'rake/reductive' +rescue Exception + $stderr.puts "You must have the Reductive build library in your RUBYLIB." + exit(14) +end + + begin require 'rubygems' require 'rake/gempackagetask' |