Merge pull request #1492 from svanharmelen/f-cloudstack-network

Fixing a small logic error
This commit is contained in:
Sander van Harmelen 2015-04-11 17:56:09 +02:00
commit 852e7a3554

View File

@ -162,15 +162,14 @@ func resourceCloudStackNetworkUpdate(d *schema.ResourceData, meta interface{}) e
// Create a new parameter struct
p := cs.Network.NewUpdateNetworkParams(d.Id())
// Check if the name or display text is changed
if d.HasChange("name") || d.HasChange("display_text") {
// Check if the name is changed
if d.HasChange("name") {
p.SetName(name)
}
// Compute/set the display text
displaytext := d.Get("display_text").(string)
if displaytext == "" {
displaytext = name
}
// Check if the display text is changed
if d.HasChange("display_text") {
p.SetDisplaytext(d.Get("display_text").(string))
}
// Check if the cidr is changed