Skip to content
Snippets Groups Projects
Commit a361062c authored by Henrik Triem's avatar Henrik Triem
Browse files

Merge branch 'test/mariadb-connector-c' into '2.12'

Use mariadb-connector-c for RHEL 8+

See merge request !25

https://github.com/Icinga/icinga-packaging/issues/205

(cherry picked from commit a894a068)

7bf92e3d Use mariadb-connector-c for RHEL 8+
98704be6 Try excluding mysql-devel
a6d6aa46 Try setting BuildRequires to Requires
59f9680d Re-add BuildRequires
cc51938b Add script to remove mysql-devel
9bba7fb5 Add a sudo :(
e813ef63 ...and assume yes when removing mysql-devel
2716e965 Remove mysql-devel before the script
d04228d5 Remove remove mysql-devel instruction
parent 11518ae2
No related branches found
No related tags found
1 merge request!26Merge branch 'test/mariadb-connector-c' into '2.11'
Pipeline #19244 passed
......@@ -251,9 +251,13 @@ BuildRequires: libmysqlclient-devel
BuildRequires: mysql-devel
%endif
%else
%if 0%{?rhel} >= 8
BuildRequires: mariadb-connector-c-devel
%else
BuildRequires: mysql-devel
%endif #suse
%endif
Requires: %{name}-bin = %{version}-%{release}
......@@ -643,6 +647,7 @@ getent passwd %{icinga_user} >/dev/null || %{_sbindir}/useradd -c "icinga" -s /s
%endif
%endif
%if %{with mysql}
%post ido-mysql
if [ ${1:-0} -eq 1 ] && [ -e %{_sysconfdir}/%{name}/features-enabled/ido-mysql.conf ]
then
......@@ -659,7 +664,9 @@ if [ "$1" = "0" ]; then
fi
exit 0
%endif
%if %{with pgsql}
%post ido-pgsql
if [ ${1:-0} -eq 1 ] && [ -e %{_sysconfdir}/%{name}/features-enabled/ido-pgsql.conf ]
then
......@@ -676,6 +683,7 @@ if [ "$1" = "0" ]; then
fi
exit 0
%endif
%if 0%{?use_selinux}
%post selinux
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment