/[smeserver]/rpms/e-smith-lib/sme9/e-smith-lib.spec
ViewVC logotype

Diff of /rpms/e-smith-lib/sme9/e-smith-lib.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.1 by slords, Fri Jan 25 16:28:41 2013 UTC Revision 1.10 by wellsi, Tue May 7 15:02:51 2013 UTC
# Line 1  Line 1 
1  # $Id: e-smith-lib.spec,v 1.24 2010/10/11 22:27:51 slords Exp $  # $Id: e-smith-lib.spec,v 1.9 2013/05/05 05:53:12 wellsi Exp $
2    
3  Summary: e-smith server and gateway - library module  Summary: e-smith server and gateway - library module
4  %define name e-smith-lib  %define name e-smith-lib
5  Name: %{name}  Name: %{name}
6  %define version 2.4.0  %define version 2.4.0
7  %define release 1  %define release 8
8  Version: %{version}  Version: %{version}
9  Release: %{release}%{?dist}  Release: %{release}%{?dist}
10  License: Artistic  License: Artistic
11  Group: Networking/Daemons  Group: Networking/Daemons
12  Source: %{name}-%{version}.tar.xz  Source: %{name}-%{version}.tar.xz
13    Patch0: e-smith-lib-2.4.0-dont_use_kudzu_to_probe_nics.patch
14    Patch1: e-smith-lib-2.4.0-fix_bonding.patch
15    Patch2: e-smith-lib-2.4.0-ipv4check.patch
16    Patch3: e-smith-lib-2.4.0-untaint_nic_names.patch
17    Patch4: e-smith-lib-2.4.0-CreateSystemUser.patch
18  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
19  BuildArchitectures: noarch  BuildArchitectures: noarch
20  BuildRequires: e-smith-devtools >= 1.6.3-01  BuildRequires: e-smith-devtools >= 1.6.3-01
21  Obsoletes: %{name}-Tai64n  Obsoletes: %{name}-Tai64n
22  Obsoletes: whiptail  Obsoletes: whiptail
23    Requires(pre): e-smith
24  Requires: dialog  Requires: dialog
25  Requires: perl, perl(Text::Template)  Requires: perl, perl(Text::Template)
26  Requires: perl(Time::HiRes), perl(MIME::Base64)  Requires: perl(Time::HiRes), perl(MIME::Base64)
27  Requires: perl(Authen::PAM), perl(I18N::AcceptLanguage)  Requires: perl(Authen::PAM), perl(I18N::AcceptLanguage)
28  Requires: perl(I18N::LangTags) >= 0.27  Requires: perl(I18N::LangTags) >= 0.27
29  Requires: perl(Net::IPv4Addr) >= 0.10  Requires: perl(Net::IPv4Addr) >= 0.10
30    Requires: pciutils
31    
32  %description  %description
33  e-smith server and gateway software - library module.  e-smith server and gateway software - library module.
34    
35  %changelog  %changelog
36    * Sun May 05 2013 Ian Wells <esmith@wellsi.com> 2.4.0-8.sme
37    - Add e-smith as a prereq to enable removal of adding users in %pre [SME: 7547]
38    
39    * Sat Mar 9 2013 Shad L. Lords <slords@mail.com> 2.4.0-7.sme
40    - Ensure group www exists before user [SME: 7319]
41    
42    * Wed Mar 6 2013 Shad L. Lords <slords@mail.com> 2.4.0-6.sme
43    - Fix pre script to make www and apache the same [SME: 7319]
44    
45    * Tue Mar 5 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-5.sme
46    - Untaint variable in probeAdapters() [SME: 7416]
47    
48    * Thu Feb 28 2013 Ian Wells <esmith@wellsi.com> 2.4.0-4.sme
49    - Improve error checking in isValidIP [SME: 7410]
50    
51    * Sun Feb 24 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-3.sme
52    - Fix MAC detection for bond slaves [SME: 3596]
53    
54    * Thu Jan 31 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-2.sme
55    - Stop using kudzu for NIC detection [SME: 3596]
56    
57  * Fri Jan 25 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme  * Fri Jan 25 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme
58  - Bump version in prep for SME9  - Bump version in prep for SME9
59    - Perl module rpms moved to /usr/share/perl5/vendor_perl [SME: 7223]
60    
61  * Mon Oct 11 2010 Shad L. Lords <slords@mail.com> 2.2.0-7.sme  * Mon Oct 11 2010 Shad L. Lords <slords@mail.com> 2.2.0-7.sme
62  - Serialize configure_peers to prevent errors [SME: 5831]  - Serialize configure_peers to prevent errors [SME: 5831]
# Line 742  e-smith server and gateway software - li Line 771  e-smith server and gateway software - li
771    
772  %prep  %prep
773  %setup  %setup
774    %patch0 -p1
775    %patch1 -p1
776    %patch2 -p1
777    %patch3 -p1
778    %patch4 -p1
779    
780  %pre  %pre
 #--------------------------------------------------  
 # add admin, public and www user accounts  
 #--------------------------------------------------  
 /usr/sbin/groupadd \  
   -g 500 shared 2>/dev/null || :  
 /usr/sbin/useradd \  
   -u 102 -c 'e-smith web server' -d /home/e-smith \  
   -G shared -M -s /bin/false www 2>/dev/null || :  
 /usr/sbin/useradd \  
   -u 101 -c 'e-smith administrator' -d /home/e-smith \  
   -G shared,root,www -M -s /sbin/e-smith/console admin 2>/dev/null || :  
 /usr/sbin/useradd \  
   -u 103 -c 'e-smith guest' -d /home/e-smith \  
   -G shared -M -s /bin/false public 2>/dev/null || :  
 /usr/sbin/useradd \  
   -u 1002 -c 'sme log user' -d /var/log/smelog \  
   -M -s /bin/false smelog 2>/dev/null || :  
781    
 exit 0  
782    
783  %post  %post
784    


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed