bbbdf63
# Exclude 32 bit arches
bbbdf63
ExcludeArch: %{ix86}
bbbdf63
197f3df
%global pkgname   dirsrv
197f3df
# for a pre-release, define the prerel field - comment out for official release
5b5647c
# % global prerel .a1
845aec7
# also need the relprefix 0. field for a pre-release - also comment out for official release
Nathan Kinder 8dca43e
# % global relprefix 0.
79610f9
363621b
# systemd support
363621b
%global groupname %{pkgname}.target
363621b
50e0b73
# set PIE flags
50e0b73
%global _hardened_build 1
50e0b73
79610f9
Summary:          389 Administration Server (admin)
79610f9
Name:             389-admin
f53af7c
Version:          1.1.46
25db1ba
Release:          %{?relprefix}3%{?prerel}%{?dist}.1
79610f9
License:          GPLv2 and ASL 2.0
e0c4182
URL:              https://www.port389.org/
79610f9
b580729
BuildRequires:    gcc-c++
79610f9
BuildRequires:    nspr-devel
79610f9
BuildRequires:    nss-devel
6fd2502
BuildRequires:    openldap-devel
79610f9
BuildRequires:    cyrus-sasl-devel
79610f9
BuildRequires:    icu
79610f9
BuildRequires:    libicu-devel
79610f9
BuildRequires:    httpd-devel
79610f9
BuildRequires:    apr-devel
79610f9
BuildRequires:    mod_nss
78751f6
BuildRequires:    389-adminutil-devel
0c92f51
BuildRequires:    perl-generators
79610f9
79610f9
Requires:         389-ds-base
79610f9
Requires:         mod_nss
003087f
003087f
# this is needed for using semanage from our setup scripts
5dcf748
Requires:         policycoreutils-python-utils
003087f
79610f9
# the following are needed for some of our scripts
79610f9
Requires:         perl-Mozilla-LDAP
79610f9
Requires:         nss-tools
79610f9
363621b
# for systemd
363621b
Requires(post): systemd-units
363621b
Requires(preun): systemd-units
363621b
Requires(postun): systemd-units
79610f9
f53af7c
Source0:          http://www.port389.org/sources/%{name}-%{version}%{?prerel}.tar.bz2
79610f9
# 389-admin-git.sh should be used to generate the source tarball from git
4af9300
Source1:          %{name}-git.sh
79610f9
e0c4182
# Deprecate this package
e0c4182
Provides: deprecated()
e0c4182
 
e0c4182
79610f9
%description
79610f9
389 Administration Server is an HTTP agent that provides management features
79610f9
for 389 Directory Server.  It provides some management web apps that can
79610f9
be used through a web browser.  It provides the authentication, access control,
79610f9
and CGI utilities used by the console.
79610f9
79610f9
%prep
197f3df
%setup -q -n %{name}-%{version}%{?prerel}
79610f9
79610f9
%build
363621b
%configure --disable-rpath --with-selinux --with-openldap \
363621b
           --with-systemdsystemunitdir=%{_unitdir} \
363621b
           --with-systemddirsrvgroupname=%{groupname}
79610f9
79610f9
# Generate symbolic info for debuggers
79610f9
export XCFLAGS=$RPM_OPT_FLAGS
79610f9
79610f9
make %{?_smp_mflags}
79610f9
845aec7
79610f9
%install
79610f9
rm -rf $RPM_BUILD_ROOT 
79610f9
79610f9
make DESTDIR="$RPM_BUILD_ROOT" install
79610f9
79610f9
# make console jars directory
79610f9
mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{pkgname}/html/java
79610f9
79610f9
#remove libtool and static libs
79610f9
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
79610f9
rm -f $RPM_BUILD_ROOT%{_libdir}/*.so
79610f9
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
79610f9
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/modules/*.a
79610f9
rm -f $RPM_BUILD_ROOT%{_libdir}/%{pkgname}/modules/*.la
79610f9
8d26ffc
%pre -p <lua>
8d26ffc
-- save ownership/permissions on the dirs/files that rpm changes
8d26ffc
-- if these don't exist, the vars will be nil
8d26ffc
%{pkgname}admin_adminserv = posix.stat('%{_sysconfdir}/%{pkgname}/admin-serv')
8d26ffc
%{pkgname}admin_consoleconf = posix.stat('%{_sysconfdir}/%{pkgname}/admin-serv/console.conf')
8d26ffc
8d26ffc
%post -p <lua>
8d26ffc
-- do the usual daemon post setup stuff
de5621c
os.execute('/bin/systemctl preset %{pkgname}-admin.service >/dev/null 2>&1 || :')
8d26ffc
-- restore permissions if upgrading
8d26ffc
if %{pkgname}admin_adminserv then
8d26ffc
    posix.chmod('%{_sysconfdir}/%{pkgname}/admin-serv', %{pkgname}admin_adminserv.mode)
8d26ffc
    posix.chown('%{_sysconfdir}/%{pkgname}/admin-serv', %{pkgname}admin_adminserv.uid, %{pkgname}admin_adminserv.gid)
8d26ffc
end
8d26ffc
if %{pkgname}admin_consoleconf then
8d26ffc
    posix.chmod('%{_sysconfdir}/%{pkgname}/admin-serv/console.conf', %{pkgname}admin_consoleconf.mode)
8d26ffc
    posix.chown('%{_sysconfdir}/%{pkgname}/admin-serv/console.conf', %{pkgname}admin_consoleconf.uid, %{pkgname}admin_consoleconf.gid)
8d26ffc
end
79610f9
79610f9
%preun
de5621c
%systemd_preun %{pkgname}-admin.service
79610f9
d6def21
%postun
79610f9
79610f9
%files
79610f9
%doc LICENSE
79610f9
%dir %{_sysconfdir}/%{pkgname}/admin-serv
79610f9
%config(noreplace)%{_sysconfdir}/%{pkgname}/admin-serv/*.conf
79610f9
%{_datadir}/%{pkgname}
79610f9
%config(noreplace)%{_sysconfdir}/sysconfig/%{pkgname}-admin
363621b
%{_unitdir}/%{pkgname}-admin.service
79610f9
%{_sbindir}/*
79610f9
%{_libdir}/*.so.*
79610f9
%{_libdir}/%{pkgname}
79610f9
%{_mandir}/man8/*
79610f9
79610f9
%changelog
25db1ba
* Wed Jan 23 2019 Pete Walter <pwalter@fedoraproject.org> - 1.1.46-3.1
25db1ba
- Rebuild for ICU 63
25db1ba
e0c4182
* Thu Dec 20 2018 Mark Reynolds <mreynolds@redhat.com> - 1.1.46-3
e0c4182
- Bump version to 1.1.46-3
e0c4182
- Mark package as deprecated
e0c4182
e02340c
* Mon Jul 23 2018 Mark Reynolds <mreynolds@redhat.com> - 1.1.46-2
e02340c
- Remove ldconfig is post scriptlets
e02340c
800f0ee
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.46-1.9
800f0ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
800f0ee
7b32495
* Tue Jul 10 2018 Pete Walter <pwalter@fedoraproject.org> - 1.1.46-1.8
7b32495
- Rebuild for ICU 62
7b32495
6c0a55e
* Mon Apr 30 2018 Pete Walter <pwalter@fedoraproject.org> - 1.1.46-1.7
6c0a55e
- Rebuild for ICU 61.1
6c0a55e
bbbdf63
* Tue Feb 20 2018 Mark Reynolds <mreynolds@redhat.com> - 1.1.46-1.6
bbbdf63
- Exclude I86(32 bit) platforms
bbbdf63
260419e
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.46-1.5
260419e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
260419e
07836f3
* Thu Nov 30 2017 Pete Walter <pwalter@fedoraproject.org> - 1.1.46-1.4
07836f3
- Rebuild for ICU 60.1
07836f3
da51074
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.46-1.3
da51074
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
da51074
a550d8a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.46-1.2
a550d8a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a550d8a
98c3bc3
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.46-1.1
98c3bc3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
98c3bc3
f53af7c
* Tue Nov 01 2016 Mark Reynolds <mreynolds@redhat.com> - 1.1.46-1
f53af7c
- Bump verison to 1.1.46
f53af7c
- Ticket 49015 - regsiter-ds-amin.pl silent registration does not work with local instances
f53af7c
4af9300
* Tue Oct 11 2016 Mark Reynolds <mreynolds@redhat.com> - 1.1.45-1
4af9300
bump version to 1.1.45
4af9300
Ticket 48988 - ds_removal and ds_unregister should support prompting for password
4af9300
bump version to 1.1.44
4af9300
Bug 1236635 - 389-admin TPS srpmtest failure
4af9300
Ticket 48932 - stopping admin server stops all httpd processes
4af9300
Ticket 47413 - 389-admin fails to build with latest httpd
4af9300
Ticket 48931 - start-ds-admin should use systemctl
4af9300
Ticket 48823 - Admin Server - Add IPv6 support
4af9300
Ticket 48907 - register-ds-admin fails to find local config DS
4af9300
Ticket 48306 - perl module conditional test is not conditional when checking SELinux policies
4af9300
Ticket 48213 - Admin server registration requires anonymous binds
4af9300
bump version to 1.1.43
4af9300
Ticket 48429 - running remove-ds-admin.pl multiple times will make it so you cannot install DS
4af9300
Ticket 48410 - 389-admin - Unable to remove / unregister a DS instance from admin server
4af9300
Ticket 48409 - RHDS upgrade change Ownership of certificate files upon upgrade.
4af9300
Ticket 47840 - Fix setup-ds-admin.pl to create adm.conf with sbin scripts
4af9300
4af9300
* Wed Jul 06 2016 Mark Reynolds <mreynolds@redhat.com> - 1.1.42-1.7
af49ed8
- Replace http with https when downloading content from git
af49ed8
27fe51e
* Wed Jul 06 2016 Marcin Juszkiewicz <mjuszkie@redhat.com> - 1.1.42-1.6
27fe51e
- Drop USE_64 variable as it is not used anymore.
27fe51e
5dcf748
* Wed Jul 06 2016 Tomas Radej <tradej@redhat.com> - 1.1.42-1.5
5dcf748
- Updated dep on policycoreutils-python-utils (semanage was moved)
5dcf748
cfbabdf
* Fri Apr 15 2016 David Tardon <dtardon@redhat.com> - 1.1.42-1.4
cfbabdf
- rebuild for ICU 57.1
cfbabdf
7869660
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.42-1.3
7869660
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
7869660
e98b7f8
* Wed Oct 28 2015 David Tardon <dtardon@redhat.com> - 1.1.42-1.2
e98b7f8
- rebuild for ICU 56.1
e98b7f8
7c68e57
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.42-1.1
7c68e57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
7c68e57
fa4d469
* Wed Jun 10 2015 Noriko Hosoi <nhosoi@redhat.com> - 1.1.42-1
fa4d469
- bump version to 1.1.42 
fa4d469
- Ticket 47548 - register-ds-admin - silent file incorrectly processed 
fa4d469
- Ticket 47493 - Configuration Tab does not work with FIPS mode enabled 
fa4d469
- Ticket 48186 - register-ds-admin.pl script prints clear text password in the terminal 
fa4d469
- Ticket 47548 - register-ds-admin.pl fails to set local bind DN and password 
fa4d469
- Ticket 47467 - Improve Add CRL/CKL dialog and errors 
fa4d469
- Ticket 48171 - remove-ds-admin.pl removes files in the rpm 
fa4d469
- Ticket 48153 - [adminserver] support NSS 3.18 
fa4d469
Petr Machata 81805a7
* Wed Feb 04 2015 Petr Machata <pmachata@redhat.com> - 1.1.38-1.1
Petr Machata 81805a7
- Bump for rebuild.
Petr Machata 81805a7
6ad760c
* Tue Feb  3 2015 Noriko Hosoi <nhosoi@redhat.com> - 1.1.38-1
6ad760c
- bump version to 1.1.38
6ad760c
- Ticket 48024 - repl-monitor invoked from adminserver cgi fails
6ad760c
- Ticket 47995 - Admin Server: source code cleaning
6ad760c
- Ticket 47891 - Admin Server reconfig breaks SSL config
6ad760c
- Ticket 47929 - Admin Server - disable SSLv3 by default
6ad760c
- Ticket 201   - nCipher HSM cannot be configured via the console
6ad760c
- Ticket 47493 - Configuration Tab does not work with FIPS mode enabled
6ad760c
- Ticket 47697 - Resource leak in lib/libdsa/dsalib_updown.c
6ad760c
- Ticket 47860 - register-ds-admin.pl problem when following steps to replicate o=netscaperoot
6ad760c
- Ticket 47548 - register-ds-admin does not register into remote config ds
6ad760c
- Ticket 47893 - Admin Server should use Sys::Hostname instead Net::Domain
6ad760c
- Ticket 47891 - Admin Server reconfig breaks SSL config
6ad760c
- Ticket 47300 - Update man page for remove-ds-admin.pl
6ad760c
- Ticket 47850 - "nsslapd-allow-anonymous-access: rootdse" makes login as "admin" fail at the first time
6ad760c
- Ticket 47497 - Admin Express - remove "Security Level"
6ad760c
- Ticket 47495 - admin express: wrong instance creation time
6ad760c
- Ticket 47665 - Create new instance results in setting wrong ACI for the "cn=config" entry
6ad760c
- Ticket 47478 - No groups file? error restarting Admin server
6ad760c
- Ticket 47300 - [RFE] remove-ds-admin.pl: redesign the behaviour
6ad760c
- Ticket 434   - admin-serv logs filling with "admserv_host_ip_check: ap_get_remote_host could not resolve <ip address>"
6ad760c
- Ticket 47563 - cannot restart directory server from console
6ad760c
- Ticket 222   - Admin Express issues "Internal Server Error" when the Config DS is down.
6ad760c
- Ticket 418   - Error with register-ds-admin.pl
6ad760c
- Ticket 377   - Unchecked use of SELinux command Reviewed by: rmeggins
6ad760c
- Ticket 47498 - Error Message for Failed to create the configuration directory server
6ad760c
c755e08
* Mon Jan 26 2015 David Tardon <dtardon@redhat.com> - 1.1.35-2.4
c755e08
- rebuild for ICU 54.1
c755e08
55a620e
* Tue Aug 26 2014 David Tardon <dtardon@redhat.com> - 1.1.35-2.3
55a620e
- rebuild for ICU 53.1
55a620e
f323780
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.35-2.2
f323780
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
f323780
151aeae
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.35-2.1
151aeae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
151aeae
Parag Nemade 39b23ce
* Fri Feb 14 2014 Parag Nemade <paragn AT fedoraproject DOT org> - 1.1.35-2
Parag Nemade 39b23ce
- Rebuild for icu 52
Parag Nemade 39b23ce
3d8186b
* Tue Aug 20 2013 Rich Megginson <rmeggins@redhat.com> - 1.1.35-1
3d8186b
- 0417dc7 add Eclipse and patch files
3d8186b
- f2004ea compiler warning - ldif_read_record lineno type depends on openldap version
3d8186b
- Ticket #47413 389-admin fails to build with latest httpd
3d8186b
- 2a67826 add more debugging for SSL connection problems
3d8186b
- Ticket #47465 problem with 389-adminutil detection in m4/adminutil.m4 in 389-admin and 389-dsgw
3d8186b
- Ticket #47486 compiler warnings in adminutil, admin, dsgw
3d8186b
- 14b1bf9 ignore files generated by Eclipse
3d8186b
- Ticket 47467 - Improve CRL import error messages
3d8186b
- Ticket 362 - Directory Console generates insufficient key strength
3d8186b
- Ticket 47466 - Importing CA cert with existing name crashes security CGI
3d8186b
- Ticket 47468 - Change security password validation error is out of order
3d8186b
- Ticket #47334 - Avoid quoting all settings in console.conf
3d8186b
- Ticket #47333 - Relabel lockfile when starting Admin Server
3d8186b
- Ticket #47298 - remove-ds-admin.pl does not stop the admin server
3d8186b
- Ticket #567 - Restart of Admin server from console fails on segfault
3d8186b
2b71066
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.31-1.4
2b71066
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2b71066
e4c9906
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.1.31-1.3
e4c9906
- Perl 5.18 rebuild
e4c9906
39a4c29
* Sat Jan 26 2013 Kevin Fenzi <kevin@scrye.com> - 1.1.31-1.2
39a4c29
- Rebuild for new icu
39a4c29
3840499
* Wed Jan 16 2013 Noriko Hosoi <nhosoi@redhat.com> - 1.1.31-1
371ba7d
- bump version to 1.1.31
3840499
- Ticket #476 - 389 ds do not start on F18 due to missing modules
3840499
- Ticket #293 - remove-ds-admin.pl does not remove everything
3840499
- Ticket 400 - BIND operation result not checked properly in admin server
3840499
- Ticket 401 - Console login fails with anonymous access disabled
3840499
9d47633
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.30-1.1
9d47633
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9d47633
c22477c
* Wed Jun 20 2012 Rich Megginson <rmeggins@redhat.com> - 1.1.30-1
c22477c
- support for apache 2.4
c22477c
e455df1
* Tue Jun 19 2012 Rich Megginson <rmeggins@redhat.com> - 1.1.29-2
e455df1
- bump rel for rebuild
e455df1
2076085
* Tue Mar 27 2012 Rich Megginson <rmeggins@redhat.com> - 1.1.29-1
2076085
- 4ec23c0 If htmladmin fails to connect to the server, the cgi could crash.
2076085
7f4aa58
* Thu Mar 22 2012 Rich Megginson <rmeggins@redhat.com> - 1.1.28-1
7f4aa58
- Ticket #307 - htmladmin keeps segfaulting
7f4aa58
- Ticket #286 - compilation fixes for 'format-security'
7f4aa58
28a0c1c
* Fri Feb  3 2012 Rich Megginson <rmeggins@redhat.com> - 1.1.27-1
28a0c1c
- Ticket #281 - TLS not working with latest openldap
28a0c1c
- Ticket #161 - Review and address latest Coverity issues
28a0c1c
c268b56
* Wed Jan 25 2012 Rich Megginson <rmeggins@redhat.com> - 1.1.26-1
c268b56
- Bug 767823 - selinux: need to allow admin server to connect to ldap port
c268b56
f958539
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.25-1.1
f958539
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f958539
fba065a
* Fri Oct 28 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.25-1
fba065a
- Bug 740959 - 389-console put CA certificates into wrong database
fba065a
363621b
* Wed Sep 21 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.24-1
363621b
- Bug 695741 - Providing native systemd file
363621b
a8b99a4
* Thu Aug 11 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.23-1
a8b99a4
- Bug 730079 - Update SELinux policy during upgrades
a8b99a4
fd82026
* Thu Aug 11 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.22-1
fd82026
- Bug 724808 - startup CGIs write temp file to /
fd82026
- add man pages for ds_removal and ds_unregister
fd82026
- fixes for the makeUpgradeTar.sh script
fd82026
6335168
* Tue Aug  2 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.21-1
6335168
- Bug 476925 - Admin Server: Do not allow 8-bit passwords for the admin user
6335168
84baba1
* Tue Jul  5 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.20-1
84baba1
- Bug 719056 - migrate-ds-admin.pl needs to update SELinux policy
84baba1
- Bug 718285 - AdminServer should use "service" command instead of start/stop/restart scripts
84baba1
- Bug 718079 - Perl errors when running migrate-ds-admin.pl
84baba1
- Bug 713000 - Migration stops if old admin server cannot be stopped
84baba1
- added tests for the security cgi
84baba1
- fix typo in NSS_Shutdown warning message
84baba1
- better NSS error handling - reduce memory leaks
84baba1
- Bug 710372 - Not able to open the Manage Certificate from DS-console
84baba1
982560d
* Tue Jun 28 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.19-1
982560d
- look for separate openldap ldif library
982560d
4687d68
* Tue Jun 21 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.18-1
4687d68
- skip rebranding current brand
4687d68
- support for skins
4687d68
024b132
* Fri May 13 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.17-1
024b132
- 1.1.17
024b132
- support "in-place" upgrade and rebranding from Red Hat to 389
024b132
- many fixes for coverity issues
024b132
0650e91
* Tue Mar 29 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.16-1
0650e91
- 389-admin-1.1.16
0650e91
- Bug 476925 - Admin Server: Do not allow 8-bit passwords for the admin user
0650e91
- Bug 614690 - Don't use exec to call genrb
0650e91
- Bug 158926 - Unable to install CA certificate when using
0650e91
-     hardware token ( LunaSA )
0650e91
- Bug 211296 - Clean up all HTML pages (Admin Express, Repl Monitor, etc)
0650e91
c9c7a89
* Mon Mar 07 2011 Caolán McNamara <caolanm@redhat.com> - 1.1.15-2
c9c7a89
- rebuild for icu 4.6
c9c7a89
0ab4a92
* Wed Feb 23 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.15-1
0ab4a92
- 1.1.15 release - git tag 389-admin-1.1.15
0ab4a92
- Bug 493424 - remove unneeded modules for admin server apache config
0ab4a92
- Bug 618897 - Wrong permissions when creating instance from Console
0ab4a92
- Bug 672468 - Don't use empty path elements in LD_LIBRARY_PATH
0ab4a92
- Bug 245278 - Changing to a password with a single quote does not work
0ab4a92
- Bug 604881 - admin server log files have incorrect permissions/ownerships
0ab4a92
- Bug 387981 - plain files can be chosen on the Restore Directory dialog
0ab4a92
- Bug 668950 - Add posix group support to Console
0ab4a92
- Bug 618858 - move start-ds-admin env file into main admin server config path
0ab4a92
- Bug 616260 - libds-admin-serv linking fails due to unresolved link-time depe
0ab4a92
ndencies
0ab4a92
- start-ds-admin.in -- replaced "return 1" with "exit 1"
0ab4a92
- Bug 151705 - Need to update Console Cipher Preferences with new ciphers
0ab4a92
- Bug 470576 - Migration could do addition checks before commiting actions
0ab4a92
833d2e6
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.14-1.1
833d2e6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
833d2e6
5b5647c
* Wed Jan  5 2011 Rich Megginson <rmeggins@redhat.com> - 1.1.14-1
5b5647c
- 1.1.14 release
5b5647c
- Bug 664671 - Admin server segfault when full SSL access (http+ldap+console) 
5b5647c
required
5b5647c
- Bug 638511 - dirsrv-admin crashes at startup with SELinux enabled
5b5647c
8ff78e5
* Tue Nov 23 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.13-1
8ff78e5
- This is the final 1.1.13 release
8ff78e5
- git tag 389-admin-1.1.13
8ff78e5
- Bug 656441 - Missing library path entry causes LD_PRELOAD error
8ff78e5
- setup-ds-admin.pl -u exits with ServerAdminID and as_uid related error
8ff78e5
Nathan Kinder 51659b2
* Wed Nov 17 2010 Nathan Kinder <nkinder@redhat.com> - 1.1.1.12-2
Nathan Kinder aa7a923
- This is the final 1.1.12 release
Nathan Kinder aa7a923
- git tag 389-admin-1.1.12
Nathan Kinder 51659b2
Nathan Kinder 8dca43e
* Fri Nov 12 2010 Nathan Kinder <nkinder@redhat.com> - 1.1.1.12-1
Nathan Kinder 8dca43e
- This is the final 1.1.12 release
Nathan Kinder 8dca43e
- git tag 389-admin-1.1.12
044ca65
044ca65
* Fri Nov 12 2010 Nathan Kinder <nkinder@redhat.com> - 1.1.1.12-1
Nathan Kinder 8dca43e
- Bug 648949 - Merge dirsrv and dirsrv-admin policy modules into base policy
Nathan Kinder 8dca43e
c7c7683
* Tue Oct 26 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.12-0.2.a2
c7c7683
- fix mozldap build breakage
c7c7683
6fd2502
* Tue Sep 28 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.12-0.1.a1
6fd2502
- This is the 1.1.12 alpha 1 release - with openldap support
6fd2502
028e0e9
* Thu Aug 26 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.11-1
028e0e9
- This is the final 1.1.11 release
028e0e9
c9f10df
* Wed Aug  4 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.11-0.7.rc2
c9f10df
- 1.1.11.rc2 release
c9f10df
- git tag 389-admin-1.1.11.rc2
c9f10df
- Bug 594745 - Get rid of dirsrv_lib_t label
c9f10df
560548f
* Wed Jun  9 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.11-0.6.rc1
560548f
- 1.1.11.rc1 release
560548f
e1cab49
* Wed May 26 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.11-0.5.a4
e1cab49
- 1.1.11.a4 release
e1cab49
6ad760c
* Wed Apr  7 2010 Nathan Kinder <nkinder@redhat.com> - 1.1.11-0.4.a3
003087f
- 1.1.11.a3 release
003087f
- Bug 570912 - dirsrv-admin SELinux module fails to install
003087f
- Change parsing of start-slapd for instance name
d6def21
- Bug 574233 - Updated requirements for selinux policy
d6def21
- Moved selinux subpackage into base package
003087f
Caolan McNamara b33303d
* Fri Apr 02 2010 Caolán McNamara <caolanm@redhat.com> - 1.1.11.a2-0.3
Caolan McNamara b33303d
- rebuild for icu 4.4
Caolan McNamara b33303d
a01ab61
* Fri Feb 26 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.11.a2-0.2
a01ab61
- the 1.1.11.a2 release
a01ab61
- Bug 460162 - FedoraDS "with-FHS" installs init.d StartupScript in wrong location
a01ab61
- Bug 460209 - Correct configure help message
a01ab61
- Bug 560827 - Admin Server: DistinguishName validation fails
a01ab61
- Make check for threaded httpd work with Apache 2.0
a01ab61
845aec7
* Thu Jan 21 2010 Nathan Kinder <nkinder@redhat.com> - 1.1.11.a1-0.1
845aec7
- the 1.1.11.a1 release
845aec7
- added SELinux subpackage
845aec7
a642b00
* Wed Jan 20 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.10-1
a642b00
- the 1.1.10 release
a642b00
- allow server to run unconfined if not built with selinux support
a642b00
a56bac3
* Thu Jan 14 2010 Rich Megginson <rmeggins@redhat.com> - 1.1.10.a3-0.3
a56bac3
- the 1.1.10.a3 release
a56bac3
- make sure we can find ICU genrb on all platforms
a56bac3
565dd61
* Fri Dec 18 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.10.a2-0.2
565dd61
- the 1.1.10.a2 release
565dd61
- fix problem with genrb path on F-12 and later
565dd61
197f3df
* Thu Oct  8 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.10.a1-1
197f3df
- the 1.1.10.a1 release
197f3df
251ce2f
* Mon Sep 14 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.9-1
251ce2f
- the 1.1.9 release
251ce2f
8d26ffc
* Tue Aug 25 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.8-6
8d26ffc
- rewrite perm/owner preservation code to use lua
8d26ffc
8d26ffc
* Wed Aug 12 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.8-5
91df7bb
- final rebuild for 1.1.8 release
91df7bb
824618d
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-4
824618d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
824618d
c8b7440
* Tue Jul 21 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.8-3
c8b7440
- bump rev for final rebuild
c8b7440
75b38fb
* Tue Jul 21 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.8-2
78751f6
- change adminutil to 389-adminutil
78751f6
79610f9
* Thu Jun 18 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.8-1
79610f9
- bump version to 1.1.8
79610f9
- change license to GPLv2 + ASL 2.0
79610f9
- changed files that were incorrectly licensed as GPLv2+ to plain GPLv2
79610f9
79610f9
* Wed May 13 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.7-5
79610f9
- rename to 389
79610f9
79610f9
* Thu Apr  9 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.7-4
79610f9
- Resolves: bug 493424
79610f9
- Description: dirsrv-admin initscript looks for nonexistent library
79610f9
- Added patch to remove those modules from the httpd.conf
79610f9
79610f9
* Wed Apr  8 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.7-3
79610f9
- Resolves: bug 494980
79610f9
- Description: setup-ds-admin.pl -u and silent setup complain about ServerIpAddress
79610f9
- CVS tag FedoraDirSrvAdmin_1_1_7_RC3 FedoraDirSrvAdmin_1_1_7_RC3_20090408
79610f9
79610f9
* Fri Apr  3 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.7-2
79610f9
- Resolves: bug 493989
79610f9
- Description: Admin Server: valgrind invalid read in security.c when installing CRL
79610f9
79610f9
* Tue Mar 31 2009 Rich Megginson <rmeggins@redhat.com> - 1.1.7-1
79610f9
- this is the 1.1.7 release
79610f9
- added man pages for setup, migration, remove commands
79610f9
- better error handling for command line utilities
79610f9
- fixed remove from console
79610f9
- added remove-ds-admin.pl
79610f9
- added pre and post sections in order to preserve the permissions and ownerships
79610f9
- CVS tag FedoraDirSrvAdmin_1_1_7_RC1 FedoraDirSrvAdmin_1_1_7_RC1_20090331
79610f9
79610f9
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.6-3
79610f9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
79610f9
79610f9
* Mon Sep 15 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.6-2
79610f9
- patch for bug 451702 not required anymore - in upstream now
79610f9
79610f9
* Wed Jul  2 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.6-1
79610f9
- add patch for bug 451702
79610f9
- The 1.1.6 release
79610f9
79610f9
* Fri Jun  6 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.5-1
79610f9
- Resolves: Bug 448366
79610f9
- genrb no longer supports -p option
79610f9
79610f9
* Tue Apr 15 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.4-1
79610f9
- Resolves: Bug 437301
79610f9
- Directory Server: shell command injection in CGI replication monitor
79610f9
- Fix: rewrite the perl script to ignore all input parameters - replmon.conf
79610f9
- file will have to be hard coded to be in the admin-serv directory
79610f9
- Resolves: Bug 437320
79610f9
- Directory Server: unrestricted access to CGI scripts
79610f9
- Fix: remove script alias for /bin/admin/admin/bin/
79610f9
79610f9
* Wed Jan  9 2008 Rich Megginson <rmeggins@redhat.com> - 1.1.2-1
79610f9
- Fix issues associated with Fedora pkg review bug 249548
79610f9
79610f9
* Tue Dec 11 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.1-1
79610f9
- this is the final GA candidate
79610f9
79610f9
* Tue Nov  6 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.16
79610f9
- fix several beta blocker issues
79610f9
79610f9
* Mon Oct 15 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.15
79610f9
- fix bogus dist macro
79610f9
- change mozldap6 to mozldap
79610f9
79610f9
* Thu Oct 11 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.14
79610f9
- make admin server work with SELinux enabled
79610f9
- fix wording errors in setup
79610f9
79610f9
* Mon Oct  8 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.13
79610f9
- added /etc/sysconfig/dirsrv-admin the file that allows you to set
79610f9
- the environment used to start up the admin server (e.g. keytab, ulimit, etc.)
79610f9
- the initscript and admin start script use this file now
79610f9
- This version also has a fix to print the correct error message if the admin
79610f9
- server cannot be contacted during setup or migration.
79610f9
79610f9
* Thu Sep 27 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.12
79610f9
- fix a couple of migration issues, including the rpath $libdir problem
79610f9
- allow ds_remove from console to remove instances
79610f9
79610f9
* Wed Sep 19 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.11
79610f9
- one line fix to fix of 295001 - console.conf clobbered
79610f9
79610f9
* Tue Sep 18 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.10
79610f9
- fixed migration issue bugzilla 295001 - console.conf clobbered
79610f9
79610f9
* Fri Sep 14 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.9
79610f9
- fix several more migration problems
79610f9
79610f9
* Fri Sep 14 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.8
79610f9
- fix migration - servers are started as they are migrated now
79610f9
79610f9
* Tue Aug 21 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.7
79610f9
- Fix the with-fhs-opt configure flag
79610f9
79610f9
* Fri Aug 17 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.6
79610f9
- remove curses
79610f9
- make mod_admserv link against sasl
79610f9
- add the usual .m4 files to mod_admserv instead of having all of
79610f9
- the component logic in configure.in
79610f9
79610f9
* Thu Aug 16 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.5
79610f9
- incorporate Noriko's migration fix
79610f9
79610f9
* Wed Aug 15 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.4
79610f9
- address several migration issues
79610f9
79610f9
* Mon Aug 13 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.3
79610f9
- there is no devel package, so remove unused .so files
79610f9
79610f9
* Mon Aug 13 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.2
79610f9
- forgot to tag the modules
79610f9
79610f9
* Fri Aug 10 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-1.1
79610f9
- get rid of cvsdate
79610f9
- use pkgname of dirsrv for filesystem path naming
79610f9
- get rid of devel package
79610f9
- simplify files section
79610f9
79610f9
* Fri Aug 10 2007 Noriko Hosoi <nhosoi@redhat.com> - 1.1.0-0.3.20070810
79610f9
- updated to latest sources
79610f9
- upgraded the mozldap6 version to 6.0.4
79610f9
79610f9
* Wed Aug  8 2007 Noriko Hosoi <nhosoi@redhat.com> - 1.1.0-0.2.20070808
79610f9
- updated to latest sources -- bug fixes in the setup scripts
79610f9
79610f9
* Mon Aug  6 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070806
79610f9
- updated to latest sources
79610f9
79610f9
* Thu Aug  2 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.4.20070802
79610f9
- There are no files in bindir anymore
79610f9
79610f9
* Thu Aug  2 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.3.20070802
79610f9
- forgot to prepend build root to java dir creation
79610f9
79610f9
* Thu Aug  2 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.2.20070802
79610f9
- forgot to add mod_admserv and mod_restartd to source
79610f9
79610f9
* Thu Aug  2 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070802
79610f9
- updated to latest sources - fix build breakage
79610f9
- add console jars dir under html
79610f9
79610f9
* Mon Jul 23 2007 Rich Megginson <rmeggins@redhat.com> - 1.1.0-0.1.20070725
79610f9
- Initial version based on fedora-ds-base.spec