-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change bool -> *bool in types.GuestCustomizationSection #291
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One polish and LGTM!
govcd/vm.go
Outdated
@@ -445,6 +445,9 @@ func (vm *VM) BlockWhileGuestCustomizationStatus(unwantedStatus string, timeOutA | |||
} | |||
} | |||
|
|||
// Customize function allows to set computername, apply customization script and enable or disble the changeSid option |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe:
// Customize function allows to set computername, apply customization script and enable or disble the changeSid option | |
// Customize function allows to set ComputerName, apply customization script and enable or disable the changeSid option |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just needs conflicts to be solved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
In order to solve https://github.com/terraform-providers/terraform-provider-vcd/issues/303 and other problems it is better to have *bool instead of bool types (to distinguish between 0 and nil values).
This PR aims to solve just that and also deprecates some functions which are not technically correct.
Test suite passed on 9.5