Skip to content

Commit

Permalink
feat: add overcloud-database-recover
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhodgkiss authored Sep 9, 2024
1 parent ac35f12 commit 075cbcb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/overcloud-database-recover.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

set -euE
set -o pipefail

PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

source "${PARENT}/../functions"

function main {
kayobe_init
run_kayobe overcloud database recover "${@}"
}

if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
main "${@:1}"
fi

0 comments on commit 075cbcb

Please sign in to comment.