mirror of
https://github.com/ovh/the-bastion.git
synced 2024-11-14 12:17:32 +08:00
91 lines
2.7 KiB
Bash
Executable file
91 lines
2.7 KiB
Bash
Executable file
#! /usr/bin/env bash
|
|
# vim: set filetype=sh ts=4 sw=4 sts=4 et:
|
|
set -e
|
|
|
|
PROGRAM_NAME=ovh-ttyrec
|
|
RELEASE_API_URL="https://api.github.com/repos/ovh/$PROGRAM_NAME/releases"
|
|
|
|
basedir=$(readlink -f "$(dirname "$0")"/../..)
|
|
# shellcheck source=lib/shell/install.inc
|
|
. "$basedir"/lib/shell/install.inc
|
|
|
|
set_download_url_package() {
|
|
type="$1"
|
|
case "$type" in
|
|
rpm) set_download_url "/${PROGRAM_NAME}-.+\\.$archre\\.rpm$";;
|
|
deb) set_download_url "/${PROGRAM_NAME}_.+_$archre\\.deb$";;
|
|
*) exit 1;;
|
|
esac
|
|
}
|
|
|
|
action_static() {
|
|
set_archre
|
|
os=$(uname -s | tr '[:upper:]' '[:lower:]')
|
|
|
|
if [ "$arch" = "x86_64" ] || [ "$arch" = "amd64" ]; then
|
|
set_download_url "/${PROGRAM_NAME}.*_(x86_|amd)64-$os-static-binary\\.tar\\.gz$"
|
|
else
|
|
set_download_url "/${PROGRAM_NAME}.*_$arch-$os-static-binary\\.tar\\.gz$"
|
|
fi
|
|
prepare_temp_folder
|
|
|
|
_download "$url"
|
|
# we have just one archive file in the current temp directory
|
|
# shellcheck disable=SC2035
|
|
tar xzf *.tar.gz
|
|
# at this point we have just one directory, named ovh-ttyrec-w.x.y.z, just use the shell completion to get in it!
|
|
cd ovh-ttyrec-*/
|
|
action_done
|
|
|
|
action_doing "Installing files"
|
|
for file in ttytime ttyrec ttyplay; do
|
|
action_detail "/usr/local/bin/$file"
|
|
install -m 0755 "$file" /usr/local/bin/
|
|
done
|
|
cd docs
|
|
for file in *.1; do
|
|
action_detail "/usr/local/man/man1/$file"
|
|
install -m 0644 "$file" /usr/local/man/man1/
|
|
done
|
|
action_done
|
|
|
|
cd /
|
|
}
|
|
|
|
# only used when/if the API is down and we're in CI mode
|
|
default_urls() {
|
|
local ver="1.1.6.7"
|
|
local rpmver="${ver}-1"
|
|
local list="
|
|
-${rpmver}.aarch64.rpm
|
|
-${rpmver}.armv7hnl.rpm
|
|
-${rpmver}.armv7l.rpm
|
|
-${rpmver}.i386.rpm
|
|
-${rpmver}.mips64el.rpm
|
|
-${rpmver}.ppc64le.rpm
|
|
-${rpmver}.s390x.rpm
|
|
-${rpmver}.x86_64.rpm
|
|
-${ver}_amd64-freebsd-static-binary.tar.gz
|
|
-${ver}_amd64-linux-static-binary.tar.gz
|
|
-${ver}_arm64-linux-static-binary.tar.gz
|
|
-${ver}_armel-linux-static-binary.tar.gz
|
|
-${ver}_armhf-linux-static-binary.tar.gz
|
|
-${ver}_i386-linux-static-binary.tar.gz
|
|
-${ver}_mips64el-linux-static-binary.tar.gz
|
|
-${ver}_ppc64el-linux-static-binary.tar.gz
|
|
-${ver}_s390x-linux-static-binary.tar.gz
|
|
_${ver}_amd64.deb
|
|
_${ver}_arm64.deb
|
|
_${ver}_armel.deb
|
|
_${ver}_armhf.deb
|
|
_${ver}_i386.deb
|
|
_${ver}_mips64el.deb
|
|
_${ver}_ppc64el.deb
|
|
_${ver}_s390x.deb"
|
|
for suffix in $list
|
|
do
|
|
echo "https://github.com/ovh/ovh-ttyrec/releases/download/v${ver}/ovh-ttyrec${suffix}"
|
|
done
|
|
}
|
|
|
|
install_main "$@"
|