[installation] Change to nightly

This commit is contained in:
2025-10-30 12:04:59 +01:00
parent 2ff097f9d1
commit a31bc45cce
1441 changed files with 60368 additions and 56360 deletions

View File

@ -0,0 +1 @@
dnf install libxml2 boost-filesystem boost-iostreams boost-thread boost-program-options boost-regex boost-system openssl ncurses mariadb postgresql python3-numpy epel-release boost-container libbson

View File

@ -0,0 +1,10 @@
dnf install python3-dateutil python3-pip
echo "user name for pip install (sysop):"
read user
if [ -z "$user" ]; then user=sysop; fi
# install Python packages using pip
echo "installing packages for user " $user
su - $user -c 'python3 -m pip install --user twisted'

View File

@ -0,0 +1 @@
dnf install qt6-qtbase qt6-qtbase-gui qt6-qtsvg

View File

@ -0,0 +1,50 @@
#!/bin/bash
# The name of the following file may change. Find the correct one in source:
# https://github.com/IstvanBondar/iLoc
# The download source corresponds to the iloc documentation
URL="https://github.com/IstvanBondar/iLoc/raw/main/iLocAuxDir4.2.tgz"
error() {
echo $1
exit 1
}
echo "Installing iLoc dependencies"
echo -n "User name for owning the SeisComP installation (sysop): "
read user
if [ -z "$user" ]; then
user=sysop
fi
seiscompTemp=/home/${user}/seiscomp
echo -n "SeisComP installation directory (${seiscompTemp}): "
read seiscomp
if [ -z "$seiscomp" ]; then
seiscomp=${seiscompTemp}
fi
if [ ! -d "${seiscomp}" ]; then
error "Directory "${seiscomp}" does not exists"
fi
iloc="$seiscomp/share/iloc"
mkdir -p "${iloc}" || error "Could not create target path ${iloc}"
tarFile="$(mktemp)"
echo "Downloading ${URL} to ${tarFile}"
wget -O "${tarFile}" "${URL}" || error "Failed to download ${URL} to ${tarFile}"
echo "Extracting tarball to '${iloc}'"
tar xzf "${tarFile}" -C "${iloc}" || error "Failed to extract ${tarFile}"
echo "Changing ownership of ${iloc} to $user - you may wish to set group ownership"
chown -R $user "${iloc}"
exit 0

View File

@ -0,0 +1 @@
dnf install mariadb mariadb-server

View File

@ -0,0 +1 @@
dnf install postgresql postgresql-server