Init OpenBSD Python bootstrap script

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2022-05-31 13:49:30 +02:00
parent 425bd3961a
commit 60543a38e5
Signed by: Georg
GPG Key ID: 1ED2F138E7E6FF57
1 changed files with 38 additions and 0 deletions

38
scripts/sh/python_openbsd.sh Executable file
View File

@ -0,0 +1,38 @@
#!/bin/sh
# Boostrap Python 3.10 on OpenBSD 7.1
# Run on management host
target="$1"
share="/mnt/storage-warsaw/shared/openbsd/python/"
tempdir="/tmp"
packages="bzip2-1.0.8p0.tgz libffi-3.3p1.tgz xz-5.2.5p0.tgz sqlite3-3.38.2.tgz libiconv-1.16p0.tgz gettext-runtime-0.21p1.tgz python-3.10.4p0.tgz"
install () {
local package="$tempdir/$1"
ssh -t "$target" "doas pkg_install $package"
}
if [ -d "$share" ];
then
echo "Is the deployment share not mounted?"
exit 1
fi
if [ -z "$target" ];
then
echo "Specify a target host you have access to."
exit 1
fi
if [ ! "ssh -q $target hostname" ];
then
echo "Unable to connect to host, aborting."
exit 1
fi
scp -C "$share/*.tgz" "$target:$tempdir/"
for package in "$packages";
do
install "$package"
done