2017-04-14 23:39:13 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2025-02-04 12:07:49 +02:00
|
|
|
# Copyright (C) 2017-2025 Internet Systems Consortium, Inc. ("ISC")
|
2020-12-03 11:19:15 +02:00
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
# Exit with error if commands exit with non-zero and if undefined variables are
|
|
|
|
# used.
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
# SC2034: ... appears unused. Verify use (or export if used externally).
|
|
|
|
prefix="@prefix@"
|
|
|
|
|
2024-02-21 00:56:10 +02:00
|
|
|
# Include utilities based on location of this script. Check for sources first,
|
|
|
|
# so that the unexpected situations with weird paths fall on the default
|
|
|
|
# case of installed.
|
|
|
|
script_path=$(cd "$(dirname "${0}")" && pwd)
|
|
|
|
if test "${script_path}" = "@abs_top_builddir@/src/share/database/scripts/mysql"; then
|
2024-02-20 20:49:37 +02:00
|
|
|
# shellcheck source=./src/bin/admin/admin-utils.sh.in
|
2024-02-21 00:56:10 +02:00
|
|
|
. "@abs_top_builddir@/src/bin/admin/admin-utils.sh"
|
2017-04-14 23:39:13 +02:00
|
|
|
else
|
2024-02-20 20:49:37 +02:00
|
|
|
# shellcheck source=./src/bin/admin/admin-utils.sh.in
|
2024-02-21 00:56:10 +02:00
|
|
|
. "@datarootdir@/@PACKAGE_NAME@/scripts/admin-utils.sh"
|
2017-04-14 23:39:13 +02:00
|
|
|
fi
|
|
|
|
|
2020-12-03 11:19:15 +02:00
|
|
|
VERSION=$(mysql_version "$@")
|
2017-04-14 23:39:13 +02:00
|
|
|
|
|
|
|
if [ "$VERSION" != "5.0" ]; then
|
2020-12-03 11:19:15 +02:00
|
|
|
printf 'This script upgrades 5.0 to 5.1. '
|
|
|
|
printf 'Reported version is %s. Skipping upgrade.\n' "${VERSION}"
|
2017-04-14 23:39:13 +02:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
mysql "$@" <<EOF
|
2023-05-09 11:53:31 +03:00
|
|
|
-- This line starts the schema upgrade to version 5.1.
|
2017-04-14 23:39:13 +02:00
|
|
|
|
2017-04-20 15:46:24 +02:00
|
|
|
# Add missing 'client-id' and new 'flex-id' host identifier types.
|
2017-04-14 23:39:13 +02:00
|
|
|
INSERT INTO host_identifier_type VALUES (3, 'client-id');
|
2017-04-20 15:46:24 +02:00
|
|
|
INSERT INTO host_identifier_type VALUES (4, 'flex-id');
|
2017-04-14 23:39:13 +02:00
|
|
|
|
2017-04-24 16:19:37 +02:00
|
|
|
# Recreate the trigger removing dependent host entries.
|
|
|
|
DROP TRIGGER host_BDEL;
|
|
|
|
|
|
|
|
DELIMITER $$
|
|
|
|
CREATE TRIGGER host_BDEL BEFORE DELETE ON hosts FOR EACH ROW
|
|
|
|
-- Edit trigger body code below this line. Do not edit lines above this one
|
|
|
|
BEGIN
|
|
|
|
DELETE FROM ipv6_reservations WHERE ipv6_reservations.host_id = OLD.host_id;
|
|
|
|
DELETE FROM dhcp4_options WHERE dhcp4_options.host_id = OLD.host_id;
|
|
|
|
DELETE FROM dhcp6_options WHERE dhcp6_options.host_id = OLD.host_id;
|
|
|
|
END
|
|
|
|
$$
|
|
|
|
DELIMITER ;
|
|
|
|
|
2023-05-09 11:53:31 +03:00
|
|
|
# Update the schema version number.
|
2017-04-14 23:39:13 +02:00
|
|
|
UPDATE schema_version
|
2023-03-13 20:00:19 +02:00
|
|
|
SET version = '5', minor = '1';
|
|
|
|
|
|
|
|
# This line concludes the schema upgrade to version 5.1.
|
2017-04-14 23:39:13 +02:00
|
|
|
|
|
|
|
EOF
|