Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed May 23, 2017
1 parent 1d2b499 commit f9004c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion IM/ConfManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ def configure_master(self):
ssh.sftp_put_files(files)
# Copy the utils helper files
ssh.sftp_mkdir(remote_dir + "/utils")
ssh.sftp_put_dir(Config.RECIPES_DIR + "/utils", remote_dir + "//utils")
ssh.sftp_put_dir(Config.RECIPES_DIR + "/utils", remote_dir + "/utils")
# Copy the ansible_utils files
ssh.sftp_mkdir(remote_dir + "/IM/ansible_utils")
ssh.sftp_put_dir(Config.IM_PATH + "/ansible_utils", remote_dir + "/IM/ansible_utils")
Expand Down
1 change: 1 addition & 0 deletions IM/connectors/Azure.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@ def attach_data_disks(self, vm, storage_account_name, credentials, subscription_

while system.getValue("disk." + str(cont) + ".size"):
disk_size = system.getFeature("disk." + str(cont) + ".size").getValue('G')
self.log_debug("Attaching a %s GB disk to VM." % disk_size)

try:
# Attach data disk
Expand Down

0 comments on commit f9004c4

Please sign in to comment.