Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions systemvm/patches/debian/config/opt/cloud/bin/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -945,8 +945,10 @@ def main(argv):

if process_file in ["cmd_line.json", "vm_password.json"]:
logging.debug("Configuring vmpassword")
password = CsPassword("vmpassword", config)
password.process()
# TODO fix the line below
# password = CsPassword("vmpassword", config)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't feel confident this will be backwards compatible. We are now not configuring the vm with a password.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@DaanHoogland This block of code also fails on Native ACS setups. Please refer my latest comment on this PR.

# password.process()
iptables_change = True

if process_file in ["cmd_line.json", "vm_metadata.json"]:
logging.debug("Configuring vmdata")
Expand Down