This file contains hidden or 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
| #!/bin/bash | |
| DB_UPGRADE_SCRIPT=db-upgrade-script.sh | |
| cat > $DB_UPGRADE_SCRIPT <<EOF | |
| #!/bin/bash | |
| set -e | |
| echo "PostgreSQL version upgrade" |
This file contains hidden or 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
| #!/usr/bin/bash | |
| # SPDX-FileCopyrightText: 2023 SUSE LLC | |
| # | |
| # SPDX-License-Identifier: GPL-2.0-only | |
| # Naive emergency tool to update existing initrd from RPM. | |
| # Primary usecase is to PTF update saltboot initrd | |
| set -e |