1 |
# $Id: smeserver-mailman.spec,v 1.4 2015/08/21 17:26:10 stephdl Exp $ |
# $Id: smeserver-mailman.spec,v 1.5 2015/09/07 17:27:21 stephdl Exp $ |
2 |
# Authority: gordonr |
# Authority: gordonr |
3 |
# Name: Gordon Rowell |
# Name: Gordon Rowell |
4 |
|
|
9 |
%define name smeserver-mailman |
%define name smeserver-mailman |
10 |
Name: %{name} |
Name: %{name} |
11 |
%define version 1.5.0 |
%define version 1.5.0 |
12 |
%define release 4 |
%define release 5 |
13 |
Version: %{version} |
Version: %{version} |
14 |
Release: %{release}%{?dist} |
Release: %{release}%{?dist} |
15 |
License: GPL |
License: GPL |
30 |
Add Mailman integration to the SME server. |
Add Mailman integration to the SME server. |
31 |
|
|
32 |
%changelog |
%changelog |
33 |
* Fri Aug 21 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 1.5.0-4.sme |
* Fri Aug 21 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 1.5.0-5.sme |
34 |
- mailman wants that the group apache appears before the www group in /etc/group |
- mailman wants that the group apache appears before the www group in /etc/group |
35 |
- script added in %pre to change that order. [SME: 8453] |
- script added in %pre to change that order. [SME: 8056] |
36 |
|
|
37 |
* Fri Aug 21 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 1.5.0-3.sme |
* Fri Aug 21 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 1.5.0-3.sme |
38 |
- Initial release to contribs9 [SME: 8453] |
- Initial release to contribs9 [SME: 8453] |
354 |
/sbin/e-smith/create-system-user mailman 41 \ |
/sbin/e-smith/create-system-user mailman 41 \ |
355 |
"Mailman user" /usr/lib/mailman /bin/false |
"Mailman user" /usr/lib/mailman /bin/false |
356 |
|
|
357 |
#mailman wants that the apache group appears before the www group |
#mailman wants that the apache group appears before the www group in /etc/group [SME: 8056] |
358 |
WWW=$(sed -n '/^www/p' /etc/group) |
TEST=$(grep -P '^www|apache' /etc/group) |
359 |
sed -i '/^www/d' /etc/group |
TEST2='www:x:102:admin |
360 |
echo $WWW >> /etc/group |
apache:x:102:' |
361 |
|
|
362 |
|
if [[ $TEST == $TEST2 ]]; then |
363 |
|
WWW=$(sed -n '/^www/p' /etc/group) |
364 |
|
sed -i '/^www/d' /etc/group |
365 |
|
echo $WWW >> /etc/group |
366 |
|
fi |
367 |
|
|
368 |
%post |
%post |
369 |
|
|
370 |
%preun |
%preun |