mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
61 lines
1.7 KiB
Bash
Executable File
61 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
# verify_deb.sh tries to install the .deb package at the path given before running `consul version`
|
|
# to inspect its output. If its output doesn't match the version given, the script will exit 1 and
|
|
# report why it failed. This is meant to be run as part of the build workflow to verify the built
|
|
# .deb meets some basic criteria for validity.
|
|
|
|
# set this so we can locate and execute the verify_bin.sh script for verifying version output
|
|
SCRIPT_DIR="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
|
|
function usage {
|
|
echo "./verify_deb.sh <path_to_deb> <expect_version>"
|
|
}
|
|
|
|
function main {
|
|
local deb_path="${1:-}"
|
|
local expect_version="${2:-}"
|
|
local got_version
|
|
|
|
if [[ -z "${deb_path}" ]]; then
|
|
echo "ERROR: package path argument is required"
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z "${expect_version}" ]]; then
|
|
echo "ERROR: expected version argument is required"
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
# expand globs for path names, if this fails, the script will exit
|
|
deb_path=$(echo ${deb_path})
|
|
|
|
if [[ ! -e "${deb_path}" ]]; then
|
|
echo "ERROR: package at ${deb_path} does not exist."
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
# we have to install the 'arm' architecture in order to install the 'arm'
|
|
# package, otherwise we will git a 'package architecture does not match system' error
|
|
if [[ ${deb_path} = *_arm.deb ]]; then
|
|
dpkg --add-architecture arm
|
|
fi
|
|
|
|
apt -y update
|
|
apt -y install openssl
|
|
dpkg -i ${deb_path}
|
|
|
|
# use the script that should be located next to this one for verifying the output
|
|
exec "${SCRIPT_DIR}/verify_bin.sh" $(which consul) "${expect_version}"
|
|
}
|
|
|
|
main "$@"
|