From 84dcf4241ca9b7b5c86a648154a5c3fc89b115b0 Mon Sep 17 00:00:00 2001 From: Jay Pipes Date: Mon, 19 Nov 2012 10:23:25 -0500 Subject: [PATCH] String to symbol change in connection_info and fix small typo in doc header --- libraries/default.rb | 8 ++++---- recipes/default.rb | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/default.rb b/libraries/default.rb index 252aa845..1b570bd4 100644 --- a/libraries/default.rb +++ b/libraries/default.rb @@ -111,10 +111,10 @@ module Openstack end connection_info = { - 'host' => host, - 'port' => port, - 'username' => super_user, - 'password' => super_password + :host => host, + :port => port, + :username => super_user, + :password => super_password } # create database diff --git a/recipes/default.rb b/recipes/default.rb index 3dc29f8a..33b5a828 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -1,5 +1,5 @@ # -# Cookbook Name:: openstack-utils +# Cookbook Name:: openstack-common # library:: default # # Copyright 2012, Jay Pipes