1 |
# $Id: e-smith-mysql.spec,v 1.14 2016/07/24 15:20:03 unnilennium Exp $ |
# $Id: e-smith-mysql.spec,v 1.18 2020/12/08 19:57:09 jpp Exp $ |
2 |
|
|
3 |
Summary: e-smith specific mysql configuration and templates. |
Summary: e-smith specific mysql configuration and templates. |
4 |
%define name e-smith-mysql |
%define name e-smith-mysql |
5 |
Name: %{name} |
Name: %{name} |
6 |
%define version 2.6.0 |
%define version 2.6.0 |
7 |
%define release 14 |
%define release 15 |
8 |
Version: %{version} |
Version: %{version} |
9 |
Release: %{release}%{?dist} |
Release: %{release}%{?dist} |
10 |
License: GPL |
License: GPL |
17 |
Patch4: e-smith-mysql-2.6.0.bz9671.RemoveDummyMysqlDatabase.patch |
Patch4: e-smith-mysql-2.6.0.bz9671.RemoveDummyMysqlDatabase.patch |
18 |
Patch5: e-smith-mysql-2.6.0.bz9688.skipredirect.patch |
Patch5: e-smith-mysql-2.6.0.bz9688.skipredirect.patch |
19 |
Patch6: e-smith-mysql-2.6.0-bz11145-updateevent.patch |
Patch6: e-smith-mysql-2.6.0-bz11145-updateevent.patch |
20 |
|
Patch7: e-smith-mysql-2.6.0-bz11021-mariadb2systemd.patch |
21 |
|
Patch8: e-smith-mysql-2.6.0-bz11120-mysql.init2systemd.patch |
22 |
|
|
23 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
24 |
BuildArchitectures: noarch |
BuildArchitectures: noarch |
30 |
AutoReqProv: no |
AutoReqProv: no |
31 |
|
|
32 |
%changelog |
%changelog |
33 |
* Mon Dec 07 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-14.sme |
* Mon Dec 07 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-15.sme |
34 |
- e-smith-update event [SME: 11145] |
- e-smith-update event [SME: 11145] |
35 |
- mariadb systemd integration [SME: 11021] |
- mariadb systemd integration [SME: 11021] |
36 |
move set.password and template |
move set.password and template |
37 |
create /usr/lib/systemd/system/mariadb.service.d/sme.conf |
create /usr/lib/systemd/system/mariadb.service.d/sme.conf |
38 |
create /sbin/e-smith/systemd/mariadb-initialize + chmod |
create /sbin/e-smith/systemd/mariadb-initialize + chmod |
39 |
cleanup |
cleanup and remove old /var/service/mariadb |
40 |
- mysql.init systemd integration [SME: 11120] |
- mysql.init systemd integration [SME: 11120] |
41 |
create mysql_init.service |
create mysql_init.service |
42 |
|
|
788 |
|
|
789 |
mkdir -p root/var/log/mariadb.run |
mkdir -p root/var/log/mariadb.run |
790 |
%patch6 -p1 |
%patch6 -p1 |
791 |
|
# move mariadb to systemd |
792 |
|
%patch7 -p1 |
793 |
|
rm -rf root/etc/e-smith/templates.metadata/var/service |
794 |
|
rm -rf root/etc/e-smith/templates/var/service/mariadb |
795 |
|
rm -rf root/var/service |
796 |
|
rm -rf root/service |
797 |
|
rm -rf root/etc/rc.d/init.d/supervise |
798 |
|
rm -rf root/var/log |
799 |
|
|
800 |
|
# move mysql.init |
801 |
|
%patch8 -p1 |
802 |
|
rm -rf root/etc/rc.d/rc7.d |
803 |
|
|
804 |
%build |
%build |
805 |
perl createlinks |
perl createlinks |
808 |
rm -rf $RPM_BUILD_ROOT |
rm -rf $RPM_BUILD_ROOT |
809 |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
810 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
811 |
|
--file /sbin/e-smith/systemd/mariadb-initialize 'attr(0554,root,root)' \ |
812 |
--file /var/service/mariadb/run 'attr(0755,root,root)' \ |
--file /var/service/mariadb/run 'attr(0755,root,root)' \ |
813 |
--file /var/service/mariadb/control/t 'attr(0750,root,root)' \ |
--file /var/service/mariadb/control/t 'attr(0750,root,root)' \ |
814 |
--file /var/service/mariadb/control/d 'attr(0750,root,root)' \ |
--file /var/service/mariadb/control/d 'attr(0750,root,root)' \ |
823 |
%clean |
%clean |
824 |
rm -rf $RPM_BUILD_ROOT |
rm -rf $RPM_BUILD_ROOT |
825 |
|
|
826 |
|
%pre |
827 |
|
if [ $1 -gt 1 ] ; then |
828 |
|
if [ -e /var/service/mariadb/run ] ; then |
829 |
|
/usr/bin/sv d mariadb |
830 |
|
/usr/bin/sv d mariadb/log |
831 |
|
fi |
832 |
|
if [ -e /var/service/mariadb ] ; then |
833 |
|
rm -rf /var/service/mariadb |
834 |
|
fi |
835 |
|
|
836 |
|
fi |
837 |
|
|
838 |
%post |
%post |
839 |
|
|
840 |
%postun |
%postun |