Skip to content

Instantly share code, notes, and snippets.

@rgevaert
Created May 3, 2013 15:11
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save rgevaert/5509714 to your computer and use it in GitHub Desktop.
Patch to make mcollective Debian packages that use ruby 1.9.1
diff --git a/ext/debian/control b/ext/debian/control
index 7fb71de..71c07c9 100644
--- a/ext/debian/control
+++ b/ext/debian/control
@@ -8,14 +8,14 @@ Homepage: http://marionette-collective.org/
Package: mcollective
Architecture: all
-Depends: ruby (>= 1.8.1), mcollective-common (= ${source:Version})
+Depends: ruby (>= 1.9.1), mcollective-common (= ${source:Version})
Description: build server orchestration or parallel job execution systems
The Marionette Collective aka. mcollective is a framework
to build server orchestration or parallel job execution systems.
Package: mcollective-client
Architecture: all
-Depends: ruby (>= 1.8.1), mcollective-common (= ${source:Version})
+Depends: ruby (>= 1.9.1), mcollective-common (= ${source:Version})
Description: build server orchestration or parallel job execution systems
The Marionette Collective aka. mcollective is a framework
to build server orchestration or parallel job execution system
@@ -24,7 +24,7 @@ Package: mcollective-common
Replaces: mcollective (<< 2.0.0-1)
Breaks: mcollective (<< 2.0.0-1), mcollective-client (<< 2.0.0-1)
Architecture: all
-Depends: ruby (>= 1.8.1) , rubygems
+Depends: ruby (>= 1.9.1) , rubygems
Description: build server orchestration or parallel job execution systems
The Marionette Collective aka. mcollective is a framework
to build server orchestration or parallel job execution systems.
diff --git a/ext/debian/mcollective-common.install b/ext/debian/mcollective-common.install
index 058fa88..f4c13a4 100644
--- a/ext/debian/mcollective-common.install
+++ b/ext/debian/mcollective-common.install
@@ -1,4 +1,4 @@
-usr/lib/ruby/1.8/* usr/lib/ruby/1.8/
+usr/lib/ruby/1.8/* usr/lib/ruby/1.9.1/
etc/mcollective/*.erb etc/mcollective
usr/share/mcollective/plugins/mcollective/agent usr/share/mcollective/plugins/mcollective
usr/share/mcollective/plugins/mcollective/audit usr/share/mcollective/plugins/mcollective
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment