Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • radoslav_bodo/rwm
1 result
Show changes
Commits on Source (2)
# RWM changelog
## 1.2 - Holodeck preserver
* changed: cron, use .conf, propagate return code, prune logs
* changed: rwm, require to select state version for storage-restore-state
* changed: microceph, use bigger disk (improves cluster stability)
* added: postgresql backup scripts (plain and docker version)
## 1.1 - Brahms tuning
* added: storage-state command
......
#!/bin/bash
#
# Restores all databases (might throw errros, see pg docs).
# Might require to regrant privileges or ownership of created objects.
#
# ```
# \c database
# GRANT ALL PRIVILEGES ON SCHEMA public TO y;
# GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO y;
# GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO y;
# ```
`
set -ex
umask 077
......