Skip to content

Commit

Permalink
Merge pull request #233 from puppetlabs/fix-template-delta-script
Browse files Browse the repository at this point in the history
(maint) Update template delta script for moved vsphere credentials
  • Loading branch information
mattkirby authored Aug 2, 2017
2 parents d789dfd + 3efce8d commit 03e8933
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/create_template_deltas.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def create_template_deltas( folder )
abort 'No config file (./vmpooler.yaml or ~/.vmpooler) found!' unless config

vim = RbVmomi::VIM.connect(
:host => config[ :vsphere ][ "server" ],
:user => config[ :vsphere ][ "username" ],
:password => config[ :vsphere ][ "password" ],
:host => config[ :providers ][ :vsphere ][ "server" ],
:user => config[ :providers ][ :vsphere ][ "username" ],
:password => config[ :providers ][ :vsphere ][ "password" ],
:ssl => true,
:insecure => true,
) or abort "Unable to connect to #{config[ :vsphere ][ "server" ]}!"
Expand Down

0 comments on commit 03e8933

Please sign in to comment.