summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz <12514511+RincewindsHat@users.noreply.github.com>2023-05-15 19:03:52 (GMT)
committerGitHub <noreply@github.com>2023-05-15 19:03:52 (GMT)
commitbd6187be8c687fee6fa06947e7c4a432af4dfe87 (patch)
tree008132e4cb887789eabaf2264ea0b523fbfe7fde
parent0dd11100aa92bab172293ec9615a8a56b0e35ee6 (diff)
parent4ed55a1d40ac8693c7d5c9aa3a7301f0a2236135 (diff)
downloadmonitoring-plugins-bd6187be8c687fee6fa06947e7c4a432af4dfe87.tar.gz
Merge branch 'master' into masterrefs/pull/1880/head
-rwxr-xr-x.github/prepare_debian.sh19
-rw-r--r--.github/workflows/test.yml1
2 files changed, 13 insertions, 7 deletions
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh
index 5222659..7f5592b 100755
--- a/.github/prepare_debian.sh
+++ b/.github/prepare_debian.sh
@@ -5,13 +5,18 @@ set -e
5 5
6export DEBIAN_FRONTEND=noninteractive 6export DEBIAN_FRONTEND=noninteractive
7 7
8sed "s/main/non-free contrib/g" /etc/apt/sources.list.d/debian.sources > /etc/apt/sources.list.d/debian-nonfree.sources 8source /etc/os-release
9apt-get update 9
10apt-get -y install software-properties-common 10if [ ${ID} = "debian" ]; then
11if [ $(lsb_release -is) = "Debian" ]; then 11 if [ -f /etc/apt/sources.list.d/debian.sources ]; then
12 apt-add-repository non-free 12 sed "s/main/non-free contrib/g" /etc/apt/sources.list.d/debian.sources > /etc/apt/sources.list.d/debian-nonfree.sources
13 apt-get update 13 else
14 apt-get update
15 apt-get -y install software-properties-common
16 apt-add-repository non-free
17 fi
14fi 18fi
19apt-get update
15apt-get -y install perl \ 20apt-get -y install perl \
16 autotools-dev \ 21 autotools-dev \
17 libdbi-dev \ 22 libdbi-dev \
@@ -83,7 +88,7 @@ cp tools/squid.conf /etc/squid/squid.conf
83service squid start 88service squid start
84 89
85# mariadb 90# mariadb
86service mariadb start 91service mariadb start || service mysql start
87mysql -e "create database IF NOT EXISTS test;" -uroot 92mysql -e "create database IF NOT EXISTS test;" -uroot
88 93
89# ldap 94# ldap
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index e825eb3..5685003 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -5,6 +5,7 @@ on:
5 branches: 5 branches:
6 - '*' 6 - '*'
7 pull_request: 7 pull_request:
8 - '*'
8 9
9jobs: 10jobs:
10 codespell: 11 codespell: