summaryrefslogtreecommitdiffstats
path: root/genome-bootstrap/lib
diff options
context:
space:
mode:
Diffstat (limited to 'genome-bootstrap/lib')
-rw-r--r--genome-bootstrap/lib/genome-bootstrap/core.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/genome-bootstrap/lib/genome-bootstrap/core.rb b/genome-bootstrap/lib/genome-bootstrap/core.rb
index 5c1121c..f569562 100644
--- a/genome-bootstrap/lib/genome-bootstrap/core.rb
+++ b/genome-bootstrap/lib/genome-bootstrap/core.rb
@@ -14,11 +14,11 @@
# a long with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+require 'rubygems'
require 'erb'
require 'yaml'
require 'restr'
require 'xmlrpc/client'
-require 'rubygems'
module GenomeBootstrap
class GenomeRepo
@@ -174,7 +174,7 @@ module GenomeBootstrap
end
def update_hostname(id, hostname)
- Restr.put("#{@cloud}/koan", :id => id, :hostname => hostname)
+ Restr.post("#{@cloud}/koan", :machine_id => id, :hostname => hostname)
end
end
end