source: dassldapsync/dassldapsync.spec

Last change on this file was 1258, checked in by joergs, on Apr 22, 2022 at 6:55:40 PM

added missing dependency

File size: 1.8 KB
RevLine 
[1218]1Summary: A script for synchronizing two LDAP trees
2Name: dassldapsync
[1223]3Version: 2.0
[1218]4Release: 1%{?dist}
[1250]5License: Apache-2.0
[1218]6Group: other
7BuildArch: noarch
[1220]8URL: http://trac.dass-it.de/pub/browser/dassldapsync
[1218]9
10Source: %{name}_%{version}.tar.gz
11BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
12
13Requires: python >= 2.6
14Requires: python-ldap
[1258]15Requires: python-dateutil
[1220]16
[1218]17%description
18This script compares two different LDAP subtrees and makes
19the according changes on objects in the destination subtree.
20Missing objects are created, extraneous objects are deleted.
21The two subtrees can reside on two different LDAP servers.
22It is also possible to use an LDIF file as the source subtree.
23
24%prep
[1223]25%setup -c
[1218]26
27%build
[1220]28
[1218]29%install
30mkdir -p "%{buildroot}/usr/sbin"
31mkdir -p "%{buildroot}/etc/"
32install -m 644 dassldapsync.conf %{buildroot}/etc/dassldapsync.conf
33install -m 755 dassldapsync.py %{buildroot}/usr/sbin/dassldapsync
[1220]34
[1218]35%clean
[1223]36[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
[1218]37
38%files
39%defattr(-,root,root)
[1220]40%config(noreplace) /etc/dassldapsync.conf
[1218]41/usr/sbin/dassldapsync
[1220]42
[1218]43%changelog
44* Wed Mar 05 2014 Sebastian Lederer slederer@dass-it.de 1.5
45 - now also works if pwd_max_days is not specified in
46 the configuration file
47* Wed Mar 05 2014 Sebastian Lederer slederer@dass-it.de 1.4
48 - add special hack to lock accounts on the destination
49 if the password on the source side has expired via ppolicy
50 overlay
51* Tue Jan 28 2014 Sebastian Lederer slederer@dass-it.de 1.3
52 - add configuration option to exclude subtree on substring match
53* Tue Jan 28 2014 Sebastian Lederer slederer@dass-it.de 1.2
54 - continue on error when creating objects
55* Tue Jan 28 2014 Sebastian Lederer slederer@dass-it.de 1.1
56 - workaround for buggy LDIF file (duplicate objectClass value)
57* Mon Jan 13 2014 Sebastian Lederer slederer@dass-it.de 1.0
58 - first attempt at an RPM package
Note: See TracBrowser for help on using the repository browser.