--- rpms/smeserver-freepbx/contribs10/smeserver-freepbx.spec 2022/03/28 03:56:02 1.6 +++ rpms/smeserver-freepbx/contribs10/smeserver-freepbx.spec 2022/05/31 04:17:50 1.10 @@ -1,10 +1,10 @@ -# $Id: smeserver-freepbx.spec,v 1.5 2022/03/28 03:13:09 jpp Exp $ +# $Id: smeserver-freepbx.spec,v 1.9 2022/04/17 02:17:11 jpp Exp $ # Authority: vip-ire # Name: Daniel Berteaud #%define fpbxversion 2.5.0 %define version 14 -%define release 1 +%define release 3 %define name smeserver-freepbx Summary: Asterisk web GUI @@ -14,7 +14,9 @@ Release: %{release}%{?dist} License: GPL Group: System/Servers Source: %{name}-%{version}.tar.gz - +Patch0: smeserver-freepbx-14-bz11940-bz9756-cron.patch +Patch1: smeserver-freepbx-14-bz11924-sounds.patch +Patch2: smeserver-freepbx-14-bz11986-service-fwconsole.patch BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot URL: http://www.freepbx.org/ @@ -71,6 +73,15 @@ This package provide the integration of %changelog +* Tue May 31 2022 Jean-Philippe Pialasse %{version}-3.sme +- fix service file fwconsole path [SME: 11986] + +* Sat Apr 16 2022 Jean-Philippe Pialasse %{version}-2.sme +- fix huge amount of error if asterisk disabled [SME: 9756] +- fix multiple email sent because of asterisk cron php path [SME: 11940] +- on uninstall remove asterisk crontab to avoid noise [SME: 10131] +- allow access to sounds folder for gui [SME: 11924] + * Sun Mar 27 2022 Jean-Philippe Pialasse 14-1.sme - first version 14 [SME: 11613] @@ -93,6 +104,7 @@ This package provide the integration of * Mon Jan 20 2020 Jean-Philipe Pialasse 13-16.sme - add required modules to enable cel and cdr logging and search [SME: 10620] - add requires lame [SME: 9859] +- fix sounds ownership so they can be handled via gui [SME: 11924] * Mon Jan 29 2018 Jean-Philipe Pialasse 13-15.sme - fix warning tampered files in GUI [SME: 10496] @@ -328,7 +340,9 @@ This package provide the integration of %prep %setup -q -n %{name}-%{version} - +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 %build # Build symlinks @@ -376,8 +390,15 @@ fi %preun if [ $1 = 0 ] ; then - /etc/rc.d/init.d/freepbx stop >& /dev/null || : + /usr/bin/systemctl stop freepbx >& /dev/null || : fi - true +%postun +if [ $1 = 0 ] ; then + #remove cron for asterisk on uninstallation to avoid noise + /usr/bin/crontab -u asterisk -r >& /dev/null || : +fi +true + +