diff options
author | waja <waja@users.noreply.github.com> | 2023-06-28 14:38:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 14:38:43 (GMT) |
commit | 4f4dd3a7a342f79dbd40e5636a5808f80ef6ed7b (patch) | |
tree | 9548b86fb65286fc3dd457b85dc296c5cfc5d019 /.github/prepare_debian.sh | |
parent | 6d341c40ab4d84d5eabfd672de1ffa3c7ecd07be (diff) | |
parent | b24eb7f46ac8667324efd818c01d68d5a1376c89 (diff) | |
download | monitoring-plugins-4f4dd3a7a342f79dbd40e5636a5808f80ef6ed7b.tar.gz |
Merge branch 'master' into compiler_warning_part_5
Diffstat (limited to '.github/prepare_debian.sh')
-rwxr-xr-x | .github/prepare_debian.sh | 19 |
1 files changed, 12 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 | ||
6 | export DEBIAN_FRONTEND=noninteractive | 6 | export DEBIAN_FRONTEND=noninteractive |
7 | 7 | ||
8 | sed "s/main/non-free contrib/g" /etc/apt/sources.list.d/debian.sources > /etc/apt/sources.list.d/debian-nonfree.sources | 8 | source /etc/os-release |
9 | apt-get update | 9 | |
10 | apt-get -y install software-properties-common | 10 | if [ ${ID} = "debian" ]; then |
11 | if [ $(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 | ||
14 | fi | 18 | fi |
19 | apt-get update | ||
15 | apt-get -y install perl \ | 20 | apt-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 | |||
83 | service squid start | 88 | service squid start |
84 | 89 | ||
85 | # mariadb | 90 | # mariadb |
86 | service mariadb start | 91 | service mariadb start || service mysql start |
87 | mysql -e "create database IF NOT EXISTS test;" -uroot | 92 | mysql -e "create database IF NOT EXISTS test;" -uroot |
88 | 93 | ||
89 | # ldap | 94 | # ldap |