Skip to content

Instantly share code, notes, and snippets.

@ezr-ondrej
Created May 13, 2019 09:44
Show Gist options
  • Save ezr-ondrej/b3c9e5cc127e1dcd2f2fcb19ea5027dd to your computer and use it in GitHub Desktop.
Save ezr-ondrej/b3c9e5cc127e1dcd2f2fcb19ea5027dd to your computer and use it in GitHub Desktop.
Disable update of VM params from foreman
# app/models/compute_resources/foreman/model/vmware.rb
# ...
def supports_update?
true
end
# ... change to
def supports_update?
false
end
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment