conjure 0.2.9 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.md +5 -0
- data/lib/conjure/provision/passenger.rb +1 -1
- data/lib/conjure/version.rb +1 -1
- metadata +1 -1
data/History.md
CHANGED
|
@@ -58,7 +58,7 @@ module Conjure
|
|
|
58
58
|
def server_template
|
|
59
59
|
public_key = File.expand_path("~/.ssh/id_rsa.pub")
|
|
60
60
|
raise "Error: ~/.ssh/id_rsa.pub must exist." unless File.exist?(public_key)
|
|
61
|
-
file = Docker::Template.new("conjure/passenger-ruby22:1.0.
|
|
61
|
+
file = Docker::Template.new("conjure/passenger-ruby22:1.0.1")
|
|
62
62
|
file.run apt_command if apt_command
|
|
63
63
|
file.run rubygems_command if rubygems_command
|
|
64
64
|
file.add_file public_key, "/root/.ssh/authorized_keys"
|
data/lib/conjure/version.rb
CHANGED