Skip to content

Commit

Permalink
Adds minor install steps to README. Fixes rake task errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Connolly committed May 9, 2013
1 parent 40fe300 commit 9ade3d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ Quickstart
bundle exec rake team:fork_skeletor
bundle exec rake admin:create_server
bundle exec rake admin:create_subdomain
brew install ssh-copy-id
ssh-copy-id root@$INCEPTION_IP
bundle exec rake team:update_jenkins
bundle exec rake team:add_deploy_key
bundle exec rake team:service_hook
Expand Down
4 changes: 2 additions & 2 deletions lib/tasks/admin.rake
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace :admin do
puts "Writing IP address of new server '#{args.project}' to config file."
@config['ip_address'] = latest_server.ipv4_address
File.open(@config_file, 'w') do |out|
YAML::dump(config, out)
YAML::dump(@config, out)
end
end

Expand Down Expand Up @@ -79,7 +79,7 @@ namespace :admin do
client = DynectRest.new(customer, username, password, zone)
client.a.fqdn(project_fqdn).address(project_ip).save
client.publish
puts "Successfully created DNS A-record pointing #{project.fqdn} to #{project_ip}!"
puts "Successfully created DNS A-record pointing #{project_fqdn} to #{project_ip}!"

end
end

0 comments on commit 9ade3d8

Please sign in to comment.