Created TODO

Added automatic user creation to ldap2dns.spec.in


git-svn-id: https://svn.alkaloid.net/gpl/ldap2dns/trunk@132 06cd67b6-e706-0410-b29e-9de616bca6e9
This commit is contained in:
Ben Klang
2005-12-08 00:03:54 +00:00
parent 205c8f02de
commit 23d234be24
3 changed files with 14 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ Version 0.3.6 (latest)
+ Altered default behavior (via ldap2dns-conf) to run ldap2dns as non-root + Altered default behavior (via ldap2dns-conf) to run ldap2dns as non-root
+ Updated FAQ + Updated FAQ
+ Deprecated askldap.c and askldap.h + Deprecated askldap.c and askldap.h
+ Created TODO file
Version 0.3.5 - 2005/11/30 Version 0.3.5 - 2005/11/30
+ Added support for DNS SRV records + Added support for DNS SRV records

2
TODO Normal file
View File

@@ -0,0 +1,2 @@
* Add support for configuring basedn, binddn, bindpw, and execute command via
environment variables. (2005/12/07 bklang)

View File

@@ -61,7 +61,18 @@ make INSTALL_PREFIX=$RPM_BUILD_ROOT install
%doc import.pl %doc import.pl
%config /etc/openldap/schema/ldap2dns.schema %config /etc/openldap/schema/ldap2dns.schema
%pre
/usr/sbin/groupadd -g 161 -r ldap2dns >/dev/null 2>/dev/null || :
/usr/sbin/groupadd -g 162 -r l2dnslog >/dev/null 2>/dev/null || :
/usr/sbin/useradd -r -o -g ldap2dns -u 161 -c "LDAP2DNS Daemon" \
-s /bin/false -d /nonexistant ldap2dns 2> /dev/null || :
/usr/sbin/useradd -r -o -g l2dnslog -u 162 -c "LDAP2DNS Logging Daemon" \
-s /bin/false -d /nonexistant l2dnslog 2> /dev/null || :
%changelog %changelog
* Wed Dec 07 2005 Ben Klang <ben@alkaloid.net>
- Added user and group creation
* Sun Dec 04 2005 Ben Klang <ben@alkaloid.net> * Sun Dec 04 2005 Ben Klang <ben@alkaloid.net>
- Updated Specfile to version 0.3.6 - Updated Specfile to version 0.3.6
* Wed Dec 06 2000 Jacob Rief <jacob.rief@tiscover.com> * Wed Dec 06 2000 Jacob Rief <jacob.rief@tiscover.com>