mirror of
https://github.com/mother-of-all-self-hosting/mash-playbook
synced 2024-11-10 14:24:25 +00:00
Update CHANGELOG.md
This commit is contained in:
parent
9e4e578f17
commit
beedda826a
1 changed files with 6 additions and 8 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -2,16 +2,14 @@
|
|||
|
||||
## (Backward Compatibility Break) Firezone database renamed
|
||||
|
||||
If you are running firezone with the default postgres integration the playbook automatically created the database `mash-firezone`.
|
||||
To follow the naming scheme we now renamed it just `firezone`. You will have to rename you database manually by running the following commands on your server
|
||||
If you are running [Firezone](docs/services/firezone.md) with the default [Postgres](docs/services/postgres.md) integration the playbook automatically created the database with the name `mash-firezone`.
|
||||
To be consistent with how this playbook names databases for all other services, going forward we've changed the database name to be just `firezone`. You will have to rename you database manually by running the following commands on your server:
|
||||
|
||||
```bash
|
||||
systemctl stop mash-firezone
|
||||
docker exec -it mash-postgres psql -U root
|
||||
ALTER DATABASE "mash-firezone" RENAME TO firezone;
|
||||
```
|
||||
1. Stop Firezone: `systemctl stop mash-firezone`
|
||||
2. Run a Postgres `psql` shell: `/mash/postgres/bin/cli`
|
||||
3. Execute this query: `ALTER DATABASE "mash-firezone" RENAME TO firezone;` and then quit the shell with `\q`
|
||||
|
||||
Then run `just install-all` and you should be good to go!
|
||||
Then update the playbook (don't forget to run `just roles`), run `just install-all` and you should be good to go!
|
||||
|
||||
# 2023-03-26
|
||||
|
||||
|
|
Loading…
Reference in a new issue