/[smecontribs]/rpms/smeserver-adv-samba/contribs7/smeserver-adv-samba.spec
ViewVC logotype

Annotation of /rpms/smeserver-adv-samba/contribs7/smeserver-adv-samba.spec

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


Revision 1.8 - (hide annotations) (download)
Wed Nov 5 00:18:50 2008 UTC (15 years, 7 months ago) by gzartman
Branch: MAIN
CVS Tags: smeserver-adv-samba-0_1_0-5_el4_sme
Changes since 1.7: +8 -1 lines
Address SME bug# 4729

1 slords 1.1 Summary: SME Server specific advanced Samba configuration files and templates
2     %define name smeserver-adv-samba
3     Name: %{name}
4     %define version 0.1.0
5 gzartman 1.8 %define release 5
6 slords 1.1 Version: %{version}
7     Release: %{release}%{?dist}
8     License: GPL
9     Group: Networking/Daemons
10     Source: %{name}-%{version}.tar.gz
11 gregzartman 1.3 Patch1: smeserver-adv-samba-0.1.0-2.patch
12 gregzartman 1.4 Patch2: smeserver-adv-samba-0.1.0-safe_winbind.patch
13 gregzartman 1.6 Patch3: smeserver-adv-samba-0.1.0-winbind2.patch
14 gzartman 1.8 Patch4: smeserver-adv-samba-0.1.0-auth.patch
15 slords 1.1 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
16     BuildArchitectures: noarch
17     BuildRequires: e-smith-devtools >= 1.13.1-03
18 gregzartman 1.4 Requires: e-smith-samba >= 2.0.0
19     Requires: e-smith-base >= 5.0.0
20 slords 1.1 Requires: samba >= 3.0.25b
21     Requires: samba-client >= 3.0.25b
22 gregzartman 1.3 Requires: samba-common >= 3.0.25b
23 slords 1.1 AutoReqProv: no
24    
25     %changelog
26 gzartman 1.8 * Tue Nov 5 2008 Greg J. Zartman <greg@leiinc.com> 0.1.0-5
27     - Add nsswitch.conf and pam.d/login fragments to workgroup-update
28     templates2expand [SME: 4729].
29    
30 gregzartman 1.6 * Wed Oct 15 2008 Greg J. Zartman <greg@leiinc.com> 0.1.0-4
31     - Update winbindd-service-status action to set service to disabled if
32     service is enabled and ServerRole is changed.
33 gzartman 1.8
34 gregzartman 1.6 * Tue Oct 14 2008 Greg J. Zartman <greg@leiinc.com> 0.1.0-3
35 gregzartman 1.4 - Set winbindd to disabled by default and on initial install, was
36     previouslly enabled by default.
37     - Create action to start winbindd if the DM or ADM server roles are designated.
38    
39 gregzartman 1.3 * Tue Sep 30 2008 Greg J. Zartman <greg@leiinc.com> 0.1.0-2
40     - Add template fragments to etc/pam.d/login to look for winbindd auth is
41     winbindd is running [SME: 4196].
42     - Add a template fragment to ibays to set the samba 'force group'
43     parameter to the current ibay group or the group shared when SME is
44     configured as a Domain Member of Active Directory Member. The is required
45     so that domain members can have write access to domain member shares. At
46     some point, we may decide to fully support domain groups transparently
47     at the domain member or active directory member server [SME: 4196].
48    
49     * Fri Apr 11 2008 Greg J. Zartman <greg@leiinc.com> 0.1.0-1
50 slords 1.1 - Roll initial package.
51     - Provide configuration parameters to deploy Samba winbindd deamon.
52     - Add template to nsswitch.conf to configure nss to include winbindd auth.
53     The configuration parameters included in this fragment really belong
54 gregzartman 1.3 in e-smith-base, but we are including it in this package until it is
55 slords 1.1 deemed appropriate to move it to e-smith-base.
56    
57     %description
58     This package shall serve as a testbed for advanced Samba functions on the
59     SME Server. This package will not conflict with e-smith-samba, but will
60     expand upon it. The PRIMARY design objective of new functions included in
61     this package is to implement them with the intent of including them in the
62     SME Core packages in a "drop in" fashion (i.e., cut and paste).
63    
64     Ever effort will be made to maintain this package for use in a
65     production network. However, certain functions provided by this package
66     could introduce situations that might comprise the stability of
67     the SME Server if not used properly. This is the nature of a testbed.
68     smeserver-adv-samba is to e-smith-samba as Fedora Core is to RHEL.
69    
70     %prep
71     %setup
72 gregzartman 1.3 %patch1 -p1
73 gregzartman 1.4 %patch2 -p1
74 gregzartman 1.6 %patch3 -p1
75 gzartman 1.8 %patch4 -p1
76 dungog 1.7
77 slords 1.1 %build
78     perl createlinks
79    
80     # Manage supervise and multilog for winbindd.
81     mkdir -p root/service
82     ln -s ../var/service/winbindd root/service/winbindd
83     mkdir -p root/var/service/winbindd/supervise
84     touch root/var/service/winbindd/down
85     mkdir -p root/var/service/winbindd/log/supervise
86     mkdir -p root/var/log/winbindd
87    
88     %install
89     rm -rf $RPM_BUILD_ROOT
90 gregzartman 1.4
91 slords 1.1 (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
92     /sbin/e-smith/genfilelist \
93     --dir '/var/service/winbindd' 'attr(1755,root,root)' \
94     --file '/var/service/winbindd/down' 'attr(0644,root,root)' \
95     --file '/var/service/winbindd/run' 'attr(0755,root,root)' \
96     --dir '/var/service/winbindd/supervise' 'attr(0700,root,root)' \
97     --dir '/var/service/winbindd/log' 'attr(1755,root,root)' \
98     --file '/var/service/winbindd/log/run' 'attr(0755,root,root)' \
99     --dir '/var/log/winbindd' 'attr(2750,smelog,smelog)' \
100     $RPM_BUILD_ROOT \
101     > %{name}-%{version}-filelist
102     echo "%doc COPYING" >> %{name}-%{version}-filelist
103    
104     %clean
105     rm -rf $RPM_BUILD_ROOT
106    
107     %post
108     chown -R smelog.smelog /var/log/winbindd
109    
110     %files -f %{name}-%{version}-filelist
111     %defattr(-,root,root)

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