-
Notifications
You must be signed in to change notification settings - Fork 75
Halt upgrades if evr is not owned by foreman on external DB #953
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| module Checks | ||
| module Foreman | ||
| class CheckExternalDbEvrPermissions < ForemanMaintain::Check | ||
| metadata do | ||
| label :external_db_evr_permissions | ||
| for_feature :foreman_database | ||
| description 'Check that external DBs have proper EVR extension permissions' | ||
| tags :pre_upgrade | ||
| confine do | ||
| feature(:foreman_database) && !feature(:foreman_database).local? && feature(:katello) | ||
| end | ||
| end | ||
|
|
||
| def run | ||
| return unless evr_exists? | ||
|
|
||
| error_msg = 'The evr extension is not owned by the foreman DB owner. Please run the ' \ | ||
ianballou marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 'following command to fix it: ' \ | ||
| 'UPDATE pg_extension SET extowner = (SELECT oid FROM pg_authid WHERE ' \ | ||
| "rolname='foreman') WHERE extname='evr';" | ||
| fail!(error_msg) unless foreman_owns_evr? | ||
| end | ||
|
|
||
| private | ||
|
|
||
| def evr_exists? | ||
| evr_exists = feature(:foreman_database).query(query_for_evr_existence) | ||
| if !evr_exists.empty? && evr_exists.first['evr_exists'] == '1' | ||
| return evr_exists.first['evr_exists'] == '1' | ||
| end | ||
| return false | ||
ianballou marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
ianballou marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| end | ||
|
|
||
| def foreman_owns_evr? | ||
| evr_owned_by_postgres = feature(:foreman_database).query(query_if_postgres_owns_evr) | ||
| unless evr_owned_by_postgres.empty? | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess it won't ever be empty, given at this point we do know the extension exists, so it must have some owner? |
||
| return evr_owned_by_postgres.first['evr_owned_by_postgres'] == '0' | ||
| end | ||
| fail!('Could not determine if the evr extension is owned by the foreman DB owner') | ||
|
||
| end | ||
|
|
||
| def query_for_evr_existence | ||
| <<-SQL | ||
| SELECT 1 AS evr_exists FROM pg_extension WHERE extname = 'evr' | ||
| SQL | ||
| end | ||
|
|
||
| def query_if_postgres_owns_evr | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Technically, this doesn't check whether |
||
| <<-SQL | ||
| SELECT CASE WHEN r.rolname = 'foreman' THEN 0 ELSE 1 END AS evr_owned_by_postgres | ||
| FROM pg_extension e JOIN pg_roles r ON e.extowner = r.oid WHERE e.extname = 'evr' | ||
| SQL | ||
| end | ||
| end | ||
| end | ||
| end | ||
Uh oh!
There was an error while loading. Please reload this page.