Skip to content

Commit

Permalink
Merge pull request #741 from bigbluebutton/antobinary-patch-2
Browse files Browse the repository at this point in the history
fix: avoid overwriting postgresql.gpg
  • Loading branch information
antobinary authored May 28, 2024
2 parents a13f616 + f356428 commit d9baa79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bbb-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,9 @@ main() {

# postgres for BigBlueButton core
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
if [ ! -f /etc/apt/trusted.gpg.d/postgresql.gpg ]; then
curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
fi

touch /root/.rnd
MONGODB=mongodb-org
Expand Down

0 comments on commit d9baa79

Please sign in to comment.