-
Notifications
You must be signed in to change notification settings - Fork 69
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
Add support for Debian Bookworm #229
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Senen
force-pushed
the
add_ubuntu_22.04_support
branch
from
October 30, 2023 16:02
f5d8fb1
to
136a4c2
Compare
Senen
force-pushed
the
debian_bookworm
branch
4 times, most recently
from
October 31, 2023 12:13
4cf6140
to
75fcefa
Compare
Hi @javierm, I added a commit to fix the database permissions error when using PostgreSQL 15 (Debian Bookworn installs this version while Ubuntu 22.04 install PostgreSQL 14). Let me know what you think! |
Senen
force-pushed
the
add_ubuntu_22.04_support
branch
3 times, most recently
from
November 16, 2023 16:44
e2971a7
to
d933c6e
Compare
Senen
force-pushed
the
debian_bookworm
branch
from
November 17, 2023 17:09
75fcefa
to
eecf918
Compare
Senen
approved these changes
Nov 18, 2023
javierm
force-pushed
the
add_ubuntu_22.04_support
branch
from
November 20, 2023 17:31
d933c6e
to
ffd6c4f
Compare
javierm
force-pushed
the
debian_bookworm
branch
from
November 20, 2023 17:35
eecf918
to
bd1afe6
Compare
javierm
commented
Nov 20, 2023
javierm
force-pushed
the
add_ubuntu_22.04_support
branch
from
November 23, 2023 18:38
ffd6c4f
to
f289b71
Compare
javierm
force-pushed
the
debian_bookworm
branch
from
November 23, 2023 18:50
bd1afe6
to
c090643
Compare
Since Bookworm comes with PostgreSQL 15, we need to make the `deploy_user` the database owner. Quoting the PostgreSQL 15 release notes [1]: > PostgreSQL 15 also revokes the CREATE permission from all users > except a database owner from the public (or default) schema. Now, we first create the user without any privileges, then create the database with the new user as the database owner and finally grant all privileges to the new user on the new database. [1] https://www.postgresql.org/about/news/postgresql-15-released-2526/ Co-Authored-By: Senén Rodero <[email protected]>
Senen
force-pushed
the
debian_bookworm
branch
from
November 24, 2023 11:04
c090643
to
20cd557
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Objectives