9e09d11
#% define pre_release rc1
64f0fa5
%define pre_release %nil
64f0fa5
db57368
Name:            cifs-utils
b87f12c
Version:         6.11
44a9b03
Release:         3%{pre_release}%{?dist}
db57368
Summary:         Utilities for mounting and managing CIFS mounts
64f0fa5
db57368
License:         GPLv3
db57368
URL:             http://linux-cifs.samba.org/cifs-utils/
64f0fa5
Igor Gnatenko 0d6a581
BuildRequires:  gcc
bbf0d84
BuildRequires:  libcap-ng-devel libtalloc-devel krb5-devel keyutils-libs-devel autoconf automake libwbclient-devel pam-devel
bbf0d84
BuildRequires:  python3-docutils
dbc4183
BuildRequires: make
64f0fa5
db57368
Requires:        keyutils
db57368
Requires(post):  /usr/sbin/alternatives
db57368
Requires(preun): /usr/sbin/alternatives
db57368
ba97a0b
Recommends: %{name}-info%{?_isa} = %{version}-%{release}
ba97a0b
21488a4
Source0:         https://download.samba.org/pub/linux-cifs/cifs-utils/%{name}-%{version}.tar.bz2
b87f12c
Patch0:          cifs-utils-destdir.patch
fef67da
64f0fa5
%description
64f0fa5
The SMB/CIFS protocol is a standard file sharing protocol widely deployed
64f0fa5
on Microsoft Windows machines. This package contains tools for mounting
64f0fa5
shares on Linux using the SMB/CIFS protocol. The tools in this package
64f0fa5
work in conjunction with support in the kernel to allow one to mount a
64f0fa5
SMB/CIFS share onto a client and use it as if it were a standard Linux
64f0fa5
file system.
64f0fa5
590cd6c
%package devel
590cd6c
Summary:        Files needed for building plugins for cifs-utils
590cd6c
590cd6c
%description devel
590cd6c
The SMB/CIFS protocol is a standard file sharing protocol widely deployed
590cd6c
on Microsoft Windows machines. This package contains the header file
590cd6c
necessary for building ID mapping plugins for cifs-utils.
590cd6c
22c94bc
%package -n pam_cifscreds
22c94bc
Summary:        PAM module to manage NTLM credentials in kernel keyring
22c94bc
22c94bc
%description -n pam_cifscreds
22c94bc
The pam_cifscreds PAM module is a tool for automatically adding
22c94bc
credentials (username and password) for the purpose of establishing
22c94bc
sessions in multiuser mounts.
22c94bc
22c94bc
When a cifs filesystem is mounted with the "multiuser" option, and does
22c94bc
not use krb5 authentication, it needs to be able to get the credentials
22c94bc
for each user from somewhere. The pam_cifscreds module can be used to
22c94bc
provide these credentials to the kernel automatically at login.
22c94bc
64f0fa5
%prep
64f0fa5
%setup -q -n %{name}-%{version}%{pre_release}
b87f12c
%patch0 -p1
64f0fa5
64f0fa5
%build
b87f12c
fgrep -r -l '/usr/bin/env python' | xargs -n1 sed -i 's@/usr/bin/env python.*@%python3@g'
abadd4b
autoreconf -i
590cd6c
%configure --prefix=/usr ROOTSBINDIR=%{_sbindir}
64f0fa5
make %{?_smp_mflags}
64f0fa5
64f0fa5
%install
64f0fa5
rm -rf %{buildroot}
64f0fa5
make install DESTDIR=%{buildroot}
590cd6c
mkdir -p %{buildroot}%{_sysconfdir}/%{name}
fe0cb12
mkdir -p %{buildroot}%{_sysconfdir}/request-key.d
fe0cb12
install -m 644 contrib/request-key.d/cifs.idmap.conf %{buildroot}%{_sysconfdir}/request-key.d
fe0cb12
install -m 644 contrib/request-key.d/cifs.spnego.conf %{buildroot}%{_sysconfdir}/request-key.d
64f0fa5
64f0fa5
%files
64f0fa5
%doc
b388ab5
%{_bindir}/getcifsacl
b388ab5
%{_bindir}/setcifsacl
9e09d11
%{_bindir}/cifscreds
590cd6c
%{_sbindir}/mount.cifs
b87f12c
%{_sbindir}/mount.smb3
64f0fa5
%{_sbindir}/cifs.upcall
158ad77
%{_sbindir}/cifs.idmap
8713422
%dir %{_libdir}/%{name}
590cd6c
%{_libdir}/%{name}/idmapwb.so
b87f12c
%{_mandir}/man1/getcifsacl.*
b87f12c
%{_mandir}/man1/setcifsacl.*
b87f12c
%{_mandir}/man1/cifscreds.*
b87f12c
%{_mandir}/man8/cifs.upcall.*
b87f12c
%{_mandir}/man8/cifs.idmap.*
b87f12c
%{_mandir}/man8/mount.cifs.*
b87f12c
%{_mandir}/man8/mount.smb3.*
b87f12c
%{_mandir}/man8/idmapwb.*
8713422
%dir %{_sysconfdir}/cifs-utils
db57368
%ghost %{_sysconfdir}/cifs-utils/idmap-plugin
fe0cb12
%config(noreplace) %{_sysconfdir}/request-key.d/cifs.idmap.conf
fe0cb12
%config(noreplace) %{_sysconfdir}/request-key.d/cifs.spnego.conf
64f0fa5
db57368
%post
db57368
/usr/sbin/alternatives --install /etc/cifs-utils/idmap-plugin cifs-idmap-plugin %{_libdir}/%{name}/idmapwb.so 10
db57368
db57368
%preun
db57368
if [ $1 = 0 ]; then
db57368
	/usr/sbin/alternatives --remove cifs-idmap-plugin %{_libdir}/%{name}/idmapwb.so
db57368
fi
db57368
590cd6c
%files devel
590cd6c
%{_includedir}/cifsidmap.h
590cd6c
22c94bc
%files -n pam_cifscreds
22c94bc
%{_libdir}/security/pam_cifscreds.so
22c94bc
%{_mandir}/man8/pam_cifscreds.8.gz
22c94bc
ba97a0b
# This subpackage also serves the purpose of avoiding a Python dependency on
ba97a0b
# the main package: https://bugzilla.redhat.com/show_bug.cgi?id=1909288.
ba97a0b
%package info
ba97a0b
Summary: Additional tools for querying information about CIFS mount
ba97a0b
Requires: %{name}%{?_isa} = %{version}-%{release}
ba97a0b
ba97a0b
%description info
ba97a0b
This subpackage includes additional tools for querying information
ba97a0b
about CIFS mount.
ba97a0b
ba97a0b
%files info
ba97a0b
%{_bindir}/smb2-quota
ba97a0b
%{_bindir}/smbinfo
ba97a0b
%{_mandir}/man1/smb2-quota.*
ba97a0b
%{_mandir}/man1/smbinfo.*
ba97a0b
64f0fa5
%changelog
44a9b03
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.11-3
44a9b03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
44a9b03
ba97a0b
* Fri Dec 18 2020 Jonathan Lebon <jonathan@jlebon.com> - 6.11-2
ba97a0b
- Split out -info subpackage for smb2-quota and smbinfo
ba97a0b
  https://bugzilla.redhat.com/show_bug.cgi?id=1909288
ba97a0b
b87f12c
* Mon Nov 02 2020 Alexander Bokovoy <abokovoy@redhat.com> - 6.11-1
b87f12c
- Update to v6.11 release
b87f12c
- Resolves: rhbz#1876400 - CVE-2020-14342 - cifs-utils: shell command injection
b87f12c
ba5165b
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.9-4
ba5165b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
ba5165b
8b9d682
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.9-3
8b9d682
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8b9d682
ebba564
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.9-2
ebba564
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
ebba564
Jeff Layton ff154e4
* Sun Apr 21 2019 Jeff Layton <jlayton@redhat.com>- 6.9-1
Jeff Layton ff154e4
- Update to v6.9 release
Jeff Layton ff154e4
441868f
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.8-4
441868f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
441868f
bbf0d84
* Tue Jul 17 2018 Alexander Bokovoy <abokovoy@redhat.com> - 6.8-3
bbf0d84
- Use Python 3 version of rst2man
bbf0d84
0383065
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.8-2
0383065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
0383065
e47b6ae
* Tue Apr 10 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.8-1
e47b6ae
- update to 6.8 release
e47b6ae
32b89a0
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.7-6
32b89a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
32b89a0
4f31531
* Tue Nov 07 2017 Jeff Layton <jlayton@redhat.com> - 6.7-5
4f31531
- more updates, switch to rst for manpages
4f31531
- update mount.cifs manpage to describe defaults better (BZ#1474539)
4f31531
ea4dcc3
* Sun Oct 29 2017 Jeff Layton <jlayton@redhat.com> - 6.7-4
ea4dcc3
- pull in all patches merged since 6.7 was released
ea4dcc3
5464f5d
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.7-3
5464f5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5464f5d
60e9078
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.7-2
60e9078
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
60e9078
bab69ea
* Thu Mar 02 2017 Jeff Layton <jlayton@redhat.com> - 6.7-1
bab69ea
- update to 6.7 release
bab69ea
2208fe4
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.6-2
2208fe4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2208fe4
6d0099e
* Wed Sep 07 2016 Jeff Layton <jlayton@redhat.com> - 6.6-1
6d0099e
- update to 6.6 release
6d0099e
37fb9b9
* Wed Aug 24 2016 Jeff Layton <jlayton@redhat.com> - 6.5-3
37fb9b9
- more cifs.upcall cleanup work
37fb9b9
cabf6f2
* Wed Aug 24 2016 Jeff Layton <jlayton@redhat.com> - 6.5-2
cabf6f2
- clean up and streamline cifs.upcall handling for GSSAPI
cabf6f2
21488a4
* Thu Mar 10 2016 Sachin Prabhu <sprabhu@redhat.com> - 6.5-1
21488a4
- Update to 6.5 release
21488a4
- Fix URL to cifs-utils upstream source
21488a4
8ba1759
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.4-5
8ba1759
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8ba1759
297d2e9
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4-4
297d2e9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
297d2e9
8713422
* Wed Jan 21 2015 Ralf Cors├ępius <corsepiu@fedoraproject.org> - 6.4-3
8713422
- Let package own %%{_sysconfdir}/cifs-utils (RHBZ#1184390).
8713422
- Let package own %%{_libdir}/cifs-utils (RHBZ#1184391).
8713422
04e5444
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.4-2
04e5444
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
04e5444
9f0c3b0
* Mon Aug 04 2014 Sachin Prabhu <sprabhu@redhat.com> - 6.4-1
9f0c3b0
- update to 6.4 release
9f0c3b0
3526ede
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.3-3
3526ede
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3526ede
8650af5
* Tue May 06 2014 Sachin Prabhu <sprabhu@redhat.com> 6.3-2
8650af5
- autoconf: allow PAM security install directory to be configurable
8650af5
- cifs: use krb5_kt_default() to determine default keytab location
8650af5
- cifskey: better use snprintf()
8650af5
- cifscreds: better error handling when key_search fails
8650af5
- cifscreds: better error handling for key_add
8650af5
217f0bb
* Thu Jan 09 2014 Jeff Layton <jlayton@redhat.com> 6.3-1
217f0bb
- update to 6.3 release
217f0bb
143499a
* Fri Dec 13 2013 Jeff Layton <jlayton@redhat.com> 6.2-5
143499a
- fix linking of wbclient
143499a
- add pam_cifscreds module and manpage
143499a
df64517
* Mon Oct 14 2013 Jeff Layton <jlayton@redhat.com> 6.2-4
df64517
- fix use-after-free in asn1_write
df64517
e220fa3
* Fri Oct 11 2013 Jeff Layton <jlayton@redhat.com> 6.2-3
e220fa3
- fixes for bugs reported by coverity:
e220fa3
- update bad bit shift patch with one that patches getcifsacl.c too
e220fa3
- remove some dead code from getcifsacl.c, asn1.c, and data_blob.c
e220fa3
- fix bad handling of allocated memory in del_mtab in mount.cifs.c
e220fa3
c674873
* Wed Oct 09 2013 Jeff Layton <jlayton@redhat.com> 6.2-2
c674873
- fix bad bit shift in setcifsacl.c
c674873
205e1df
* Fri Oct 04 2013 Jeff Layton <jlayton@redhat.com> 6.2-1
205e1df
- update to 6.2 release
205e1df
bdf26d5
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.1-4
bdf26d5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
bdf26d5
fb38774
* Mon Jul 15 2013 Jeff Layton <jlayton@redhat.com> 6.1-3
fb38774
- allow setcifsacl to work if plugin can't be loaded (bz#984087)
fb38774
db57368
* Mon Jul 15 2013 Jeff Layton <jlayton@redhat.com> 6.1-2
fb38774
- Convert idmapping plugin symlink to use alternatives system (bz#984088)
db57368
d3b2ad6
* Tue Jul 02 2013 Jeff Layton <jlayton@redhat.com> 6.1-1
d3b2ad6
- update to 6.1 release
d3b2ad6
f92468a
* Mon Mar 25 2013 Jeff Layton <jlayton@redhat.com> 6.0-1
f92468a
- update to 6.0 release
f92468a
8a83db9
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.9-4
8a83db9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8a83db9
a176bdb
* Sun Jan 13 2013 Jeff Layton <jlayton@redhat.com> 5.9-3
a176bdb
- comment fixes in cifsidmap.h
a176bdb
fef67da
* Sun Jan 13 2013 Jeff Layton <jlayton@redhat.com> 5.9-2
fef67da
- fix regression in credential file handling
fef67da
590cd6c
* Mon Jan 07 2013 Jeff Layton <jlayton@redhat.com> 5.9-1
590cd6c
- update to 5.9
590cd6c
- move mount.cifs to /usr/sbin per new packaging guidelines
590cd6c
- add -devel package to hold cifsidmap.h
590cd6c
54e9368
* Sun Nov 11 2012 Jeff Layton <jlayton@redhat.com> 5.8-1
54e9368
- update to 5.8
54e9368
039b01f
* Wed Nov 07 2012 Jeff Layton <jlayton@redhat.com> 5.7-3
039b01f
- update to latest patches queued for 5.8. More idmapping and ACL tool fixes.
039b01f
a9cb2f0
* Sun Nov 04 2012 Jeff Layton <jlayton@redhat.com> 5.7-2
a9cb2f0
- update to latest patches queued for 5.8. Mostly idmapping and ACL tool fixes.
a9cb2f0
47f3450
* Tue Oct 09 2012 Jeff Layton <jlayton@redhat.com> 5.7-1
47f3450
- update to 5.7
47f3450
021ba6d
* Fri Aug 24 2012 Jeff Layton <jlayton@redhat.com> 5.6-2
021ba6d
- update to current upstream head
021ba6d
d706d95
* Thu Jul 26 2012 Jeff Layton <jlayton@redhat.com> 5.6-1
d706d95
- update to 5.6
d706d95
3c1ea9d
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.5-3
3c1ea9d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3c1ea9d
e0acf4c
* Mon Jul 09 2012 Jeff Layton <jlayton@redhat.com> 5.5-2
e0acf4c
- remove -Werror flag
e0acf4c
- enable PIE and RELRO
e0acf4c
bfd8da6
* Wed May 30 2012 Jeff Layton <jlayton@redhat.com> 5.5-1
bfd8da6
- update to 5.5
bfd8da6
4d5468e
* Wed Apr 25 2012 Jeff Layton <jlayton@redhat.com> 5.4-2
4d5468e
- rebuild to fix dependencies due to libwbclient changes
4d5468e
8d02d8c
* Wed Apr 18 2012 Jeff Layton <jlayton@redhat.com> 5.4-1
8d02d8c
- update to 5.4
457d78b
- add patch to fix up more warnings
8d02d8c
5d1ba80
* Mon Mar 19 2012 Jeff Layton <jlayton@redhat.com> 5.3-4
5d1ba80
- fix tests for strtoul success (bz# 800621)
5d1ba80
7f4676b
* Wed Feb 08 2012 Jeff Layton <jlayton@redhat.com> 5.3-3
7f4676b
- revert mount.cifs move. It's unnecessary at this point.
7f4676b
21f4ebf
* Wed Feb 08 2012 Jeff Layton <jlayton@redhat.com> 5.3-2
21f4ebf
- move mount.cifs to /usr/sbin per new packaging guidelines
21f4ebf
9e09d11
* Sat Jan 28 2012 Jeff Layton <jlayton@redhat.com> 5.3-1
9e09d11
- update to 5.3
9e09d11
d39c0a1
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2-3
d39c0a1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d39c0a1
fe0cb12
* Fri Dec 09 2011 Jeff Layton <jlayton@redhat.com> 5.2-2
fe0cb12
- add /etc/request-key.d files
fe0cb12
a1d2550
* Fri Dec 09 2011 Jeff Layton <jlayton@redhat.com> 5.2-1
a1d2550
- update to 5.2
a1d2550
758b698
* Fri Sep 23 2011 Jeff Layton <jlayton@redhat.com> 5.1-1
758b698
- update to 5.1
b388ab5
- add getcifsacl and setcifsacl to package
758b698
bd243bf
* Fri Jul 29 2011 Jeff Layton <jlayton@redhat.com> 5.0-2
bd243bf
- mount.cifs: fix check_newline retcode check (bz# 726717)
bd243bf
158ad77
* Wed Jun 01 2011 Jeff Layton <jlayton@redhat.com> 5.0-1
158ad77
- update to 5.0
158ad77
18b0892
* Mon May 16 2011 Jeff Layton <jlayton@redhat.com> 4.9-2
18b0892
- mount.cifs: pass unadulterated device string to kernel (bz# 702664)
18b0892
8586144
* Fri Mar 04 2011 Jeff Layton <jlayton@redhat.com> 4.9-1
8586144
- update to 4.9
8586144
fe63fa4
* Tue Feb 08 2011 Jeff Layton <jlayton@redhat.com> 4.8.1-4
fe63fa4
- mount.cifs: reenable CAP_DAC_READ_SEARCH when mounting (bz# 675761)
fe63fa4
09d8402
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.1-3
09d8402
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
09d8402
2027dd6
* Tue Feb 01 2011 Jeff Layton <jlayton@redhat.com> 4.8.1-2
2027dd6
- mount.cifs: don't update mtab if it's a symlink (bz# 674101)
2027dd6
91bbc42
* Fri Jan 21 2011 Jeff Layton <jlayton@redhat.com> 4.8.1-1
91bbc42
- update to 4.8.1
91bbc42
b6a237f
* Sat Jan 15 2011 Jeff Layton <jlayton@redhat.com> 4.8-1
80b83b1
- update to 4.8
b6a237f
c95937d
* Tue Oct 19 2010 Jeff Layton <jlayton@redhat.com> 4.7-1
c95937d
- update to 4.7
c95937d
e378fd5
* Fri Jul 30 2010 Jeff Layton <jlayton@redhat.com> 4.6-1
e378fd5
- update to 4.6
e378fd5
6e0162f
* Tue Jun 01 2010 Jeff Layton <jlayton@redhat.com> 4.5-2
6e0162f
- mount.cifs: fix parsing of cred= option (BZ#597756)
6e0162f
643170b
* Tue May 25 2010 Jeff Layton <jlayton@redhat.com> 4.5-1
643170b
- update to 4.5
643170b
7e0ecb5
* Thu Apr 29 2010 Jeff Layton <jlayton@redhat.com> 4.4-3
7e0ecb5
- mount.cifs: fix regression in prefixpath patch
7e0ecb5
ea0d74b
* Thu Apr 29 2010 Jeff Layton <jlayton@redhat.com> 4.4-2
ea0d74b
- mount.cifs: strip leading delimiter from prefixpath
ea0d74b
3a19490
* Wed Apr 28 2010 Jeff Layton <jlayton@redhat.com> 4.4-1
3a19490
- update to 4.4
3a19490
8e899d4
* Sat Apr 17 2010 Jeff Layton <jlayton@redhat.com> 4.3-2
8e899d4
- fix segfault when address list is exhausted (BZ#583230)
8e899d4
db9f70d
* Fri Apr 09 2010 Jeff Layton <jlayton@redhat.com> 4.3-1
db9f70d
- update to 4.3
db9f70d
6621c05
* Fri Apr 02 2010 Jeff Layton <jlayton@redhat.com> 4.2-1
6621c05
- update to 4.2
6621c05
4ab7d4b
* Tue Mar 23 2010 Jeff Layton <jlayton@redhat.com> 4.1-1
4ab7d4b
- update to 4.1
4ab7d4b
bad489c
* Mon Mar 08 2010 Jeff Layton <jlayton@redhat.com> 4.0-2
bad489c
- fix bad pointer dereference in IPv6 scopeid handling
bad489c
64f0fa5
* Wed Mar 03 2010 Jeff Layton <jlayton@redhat.com> 4.0-1
64f0fa5
- update to 4.0
64f0fa5
- minor specfile fixes
64f0fa5
64f0fa5
* Fri Feb 26 2010 Jeff Layton <jlayton@redhat.com> 4.0-1rc1
64f0fa5
- update to 4.0rc1
64f0fa5
- fix prerelease version handling
64f0fa5
64f0fa5
* Mon Feb 08 2010 Jeff Layton <jlayton@redhat.com> 4.0a1-1
64f0fa5
- first RPM package build
64f0fa5