summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2009-03-21 02:27:00 +1100
committerJames Turnbull <james@lovedthanlost.net>2009-03-21 02:27:00 +1100
commit3e0a9cda8c6f3866c85fd20dd56a6bafcc0e0db7 (patch)
treec3de5be042f18937419e82512f0a0e11108146f5 /Rakefile
parent6ddebf4d6f5f1537987cdc15a32f439149d73ce6 (diff)
downloadpuppet-3e0a9cda8c6f3866c85fd20dd56a6bafcc0e0db7.tar.gz
puppet-3e0a9cda8c6f3866c85fd20dd56a6bafcc0e0db7.tar.xz
puppet-3e0a9cda8c6f3866c85fd20dd56a6bafcc0e0db7.zip
Moved of puppetd, puppetca, puppetmasterd, puppetrun binary from bin to sbin
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index 34a60ea96..b702beaa9 100644
--- a/Rakefile
+++ b/Rakefile
@@ -28,6 +28,7 @@ project = Rake::RedLabProject.new("puppet") do |p|
'test/**/*',
'spec/**/*',
'bin/**/*',
+ 'sbin/**/*',
'ext/**/*',
'examples/**/*',
'conf/**/*',
@@ -44,10 +45,17 @@ if project.has?(:gem)
task.require_path = 'lib' # Use these for libraries.
- task.bindir = "bin" # Use these for applications.
- task.executables = ["puppet", "puppetd", "puppetmasterd", "puppetdoc",
- "puppetca", "puppetrun", "ralsh"]
- task.default_executable = "puppet"
+ task.bindir = "." # Use these for applications.
+ task.executables = [
+ "bin/puppet",
+ "bin/puppetdoc",
+ "bin/ralsh",
+ "sbin/puppetca",
+ "sbin/puppetd",
+ "sbin/puppetmasterd",
+ "sbin/puppetrun",
+ ]
+ task.default_executable = "bin/puppet"
#### Documentation and testing.