[Fedora-directory-commits] setuputil/installer/include global.h, 1.1.1.1, 1.2 nsutils.h, 1.1.1.1, 1.2 setupapi.h, 1.1.1.1, 1.2 setupdefs.h, 1.3, 1.4
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/setuputil/installer/include
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv592/setuputil/installer/include
Modified Files:
global.h nsutils.h setupapi.h setupdefs.h
Log Message:
Resolves: bug 239494
Description: setuputil: use adm.conf instead of dbswitch.conf, ldap.conf, etc.
Fix Description: We only really need one config file - adm.conf - so just add extra fields as necessary.
Reviewed by: nhosoi (Thanks!)
Index: global.h
===================================================================
RCS file: /cvs/dirsec/setuputil/installer/include/global.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- global.h 29 Jul 2005 22:16:28 -0000 1.1.1.1
+++ global.h 9 May 2007 00:27:47 -0000 1.2
@@ -28,6 +28,12 @@
** HISTORY
**
** $Log$
+** Revision 1.2 2007/05/09 00:27:47 rmeggins
+** Resolves: bug 239494
+** Description: setuputil: use adm.conf instead of dbswitch.conf, ldap.conf, etc.
+** Fix Description: We only really need one config file - adm.conf - so just add extra fields as necessary.
+** Reviewed by: nhosoi (Thanks!)
+**
** Revision 1.1.1.1 2005/07/29 22:16:28 foxworth
** Importing new setup sdk for open source project
**
@@ -261,11 +267,9 @@
***********************************************************************
*/
#ifndef XP_WIN32
-extern const char *DEFAULT_LDAPSWITCH; /* dbswitch.conf */
extern const char *DEFAULT_ADMINUSER; /* Local Admin */
extern const char *DEFAULT_ADMINPWD; /* Local Admin Password */
-extern const char *DEFAULT_SSUSERCONF; /* ssusers.conf */
-extern const char *DEFAULT_ADMINCONF; /* ns-admin.conf */
+extern const char *DEFAULT_ADMINCONF; /* adm.conf */
extern const char *DEFAULT_SSUSER; /* nobody */
extern const char *DEFAULT_SSGROUP; /* nobody */
extern const char *DEFAULT_SROOT; /* /usr/netscape/suitespot4 */
Index: nsutils.h
===================================================================
RCS file: /cvs/dirsec/setuputil/installer/include/nsutils.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- nsutils.h 29 Jul 2005 22:16:28 -0000 1.1.1.1
+++ nsutils.h 9 May 2007 00:27:47 -0000 1.2
@@ -29,6 +29,12 @@
**
** HISTORY
** $Log$
+** Revision 1.2 2007/05/09 00:27:47 rmeggins
+** Resolves: bug 239494
+** Description: setuputil: use adm.conf instead of dbswitch.conf, ldap.conf, etc.
+** Fix Description: We only really need one config file - adm.conf - so just add extra fields as necessary.
+** Reviewed by: nhosoi (Thanks!)
+**
** Revision 1.1.1.1 2005/07/29 22:16:28 foxworth
** Importing new setup sdk for open source project
**
@@ -76,7 +82,7 @@
NSAPI_EXTERN char * formAdminDomainDN(const char *domain);
NSAPI_EXTERN char * stripAdminDomainDN(const char *domainDN);
-NSAPI_EXTERN void getDefaultLdapInfo (const char *sroot,char **ldapURL,char **ldapUser,char **adminDomain);
+NSAPI_EXTERN void getDefaultLdapInfo (const char *configdir,char **ldapURL,char **ldapUser,char **adminDomain);
NSAPI_EXTERN char *formConfigLdapURL(const char *ldapURL);
NSAPI_EXTERN char * stripConfigLdapURL(const char *configURL);
NSAPI_EXTERN int IsValidLdapServer(const char* pszHost, int nPort, const char* pszSuffix,
Index: setupapi.h
===================================================================
RCS file: /cvs/dirsec/setuputil/installer/include/setupapi.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- setupapi.h 29 Jul 2005 22:16:28 -0000 1.1.1.1
+++ setupapi.h 9 May 2007 00:27:47 -0000 1.2
@@ -29,6 +29,12 @@
**
** HISTORY
** $Log$
+** Revision 1.2 2007/05/09 00:27:47 rmeggins
+** Resolves: bug 239494
+** Description: setuputil: use adm.conf instead of dbswitch.conf, ldap.conf, etc.
+** Fix Description: We only really need one config file - adm.conf - so just add extra fields as necessary.
+** Reviewed by: nhosoi (Thanks!)
+**
** Revision 1.1.1.1 2005/07/29 22:16:28 foxworth
** Importing new setup sdk for open source project
**
@@ -148,7 +154,7 @@
/* Memory allocation and free */
NSAPI_EXTERN void * setupMalloc(unsigned int size);
-NSAPI_EXTERN char * setupStrdup(char *src);
+NSAPI_EXTERN char * setupStrdup(const char *src);
NSAPI_EXTERN void setupFree(char *src);
/* Directory server access */
@@ -234,7 +240,6 @@
NSAPI_EXTERN void setupGetGmtime(char *buf, int buflen);
NSAPI_EXTERN unsigned long setupGetDiskFreeSpace(const char *path);
-NSAPI_EXTERN int setupFileUpdateLines(char *oldLines[], char *newLines[], char *filename);
#ifdef __cplusplus
Index: setupdefs.h
===================================================================
RCS file: /cvs/dirsec/setuputil/installer/include/setupdefs.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- setupdefs.h 27 Mar 2006 21:18:34 -0000 1.3
+++ setupdefs.h 9 May 2007 00:27:47 -0000 1.4
@@ -24,6 +24,12 @@
** Platforms: UNIX and WIN32 **
** Revision History: **
** $Log$
+** Revision 1.4 2007/05/09 00:27:47 rmeggins
+** Resolves: bug 239494
+** Description: setuputil: use adm.conf instead of dbswitch.conf, ldap.conf, etc.
+** Fix Description: We only really need one config file - adm.conf - so just add extra fields as necessary.
+** Reviewed by: nhosoi (Thanks!)
+**
** Revision 1.3 2006/03/27 21:18:34 nhosoi
** [186642] Directory Server Makefile updates for Internal build
** Changed the createSIE so that caller (Admin Server and Directory Server) passes
@@ -181,11 +187,7 @@
#define SETUP_WIZBACK 1
#define SETUP_WIZNEXT 2
/* Setup common files */
-#define SETUP_DEFAULT_LDAPSWITCH "shared/config/dbswitch.conf"
-#define SETUP_DS_CONF "shared/config/ds.conf"
-#define SETUP_ADM_CONF "admin-serv/config/adm.conf"
-#define SETUP_LDAP_CONF "shared/config/ldap.conf"
-#define SETUP_LDAP_INFO "ldap.info"
+#define SETUP_ADM_CONF "adm.conf"
/* Setup sie define */
#define SETUP_ADMIN_DOMAIN "ou=%s, o=NetscapeRoot"
#define SETUP_DEFAULT_ROOT "NetscapeRoot"
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/viewdata testget.1, NONE, 1.1 testget.2, NONE, 1.1 testget.3, NONE, 1.1 testget.4, NONE, 1.1
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/viewdata
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/viewdata
Added Files:
testget.1 testget.2 testget.3 testget.4
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
--- NEW FILE testget.2 ---
sie=cn%3Dslapd-localhost%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot
--- NEW FILE testget.3 ---
sie=cn%3Dslapd-localhost2%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot
--- NEW FILE testget.4 ---
sie=cn%3Dadmin-serv-localhost%2C+cn%3DFedora+Administration+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/ugdsconfig testget.1, NONE, 1.1 testget.10, NONE, 1.1 testget.2, NONE, 1.1 testget.3, NONE, 1.1 testget.4, NONE, 1.1 testget.5, NONE, 1.1 testget.6, NONE, 1.1 testget.7, NONE, 1.1 testget.8, NONE, 1.1 testget.9, NONE, 1.1
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/ugdsconfig
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/ugdsconfig
Added Files:
testget.1 testget.10 testget.2 testget.3 testget.4 testget.5
testget.6 testget.7 testget.8 testget.9
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
--- NEW FILE testget.10 ---
op=setconfig&ugdsconfig.inforef=cn%3DUserDirectory%2C+ou%3DGlobal+Preferences%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot&ugdsconfig.dirurl=ldap://newhost:newport/o=newsuffix&ugdsconfig.binddn=newbinddn&ugdsconfig.bindpw=newbindpw
--- NEW FILE testget.2 ---
op=
--- NEW FILE testget.3 ---
op=getconfig
--- NEW FILE testget.4 ---
op=setconfig
--- NEW FILE testget.5 ---
=&=&=&=&=&=&=&=&=&=&=&=&=&=&=&=&=&=&=
--- NEW FILE testget.6 ---
op=bogus
--- NEW FILE testget.7 ---
op=setconfig&bogus=
--- NEW FILE testget.8 ---
op=setconfig&ugdsconfig.inforef=&ugdsconfig.dirurl=&ugdsconfig.binddn=&ugdsconfig.bindpw=
--- NEW FILE testget.9 ---
op=setconfig&ugdsconfig.inforef=newinforef&ugdsconfig.dirurl=ldap://newhost:newport/o=newsuffix&ugdsconfig.binddn=newbinddn&ugdsconfig.bindpw=newbindpw
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/stopsrv testget.1, NONE, 1.1 testget.2, NONE, 1.1 testget.3, NONE, 1.1 testget.4, NONE, 1.1 testget.5, NONE, 1.1
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/stopsrv
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/stopsrv
Added Files:
testget.1 testget.2 testget.3 testget.4 testget.5
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
--- NEW FILE testget.2 ---
return_format
--- NEW FILE testget.3 ---
return_format=
--- NEW FILE testget.4 ---
return_format=asdfakljalkajsdf
--- NEW FILE testget.5 ---
return_format=html
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/restartsrv testget.1, NONE, 1.1 testget.2, NONE, 1.1 testget.3, NONE, 1.1 testget.4, NONE, 1.1 testget.5, NONE, 1.1 testget.6, NONE, 1.1
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/restartsrv
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/restartsrv
Added Files:
testget.1 testget.2 testget.3 testget.4 testget.5 testget.6
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
--- NEW FILE testget.2 ---
op=
--- NEW FILE testget.3 ---
foo=bar
--- NEW FILE testget.4 ---
op=asdfasdf
--- NEW FILE testget.5 ---
op=getpid
--- NEW FILE testget.6 ---
op=restart
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/htmladmin testget.1, NONE, 1.1 testget.2, NONE, 1.1 testget.3, NONE, 1.1 testget.4, NONE, 1.1 testget.5, NONE, 1.1 testget.6, NONE, 1.1 testget.7, NONE, 1.1 testget.8, NONE, 1.1
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/htmladmin
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/htmladmin
Added Files:
testget.1 testget.2 testget.3 testget.4 testget.5 testget.6
testget.7 testget.8
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
--- NEW FILE testget.2 ---
obj=cn%3Dslapd-localhost%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot&op=topframepaint&view=viewparam
--- NEW FILE testget.3 ---
obj=cn%3Dslapd-localhost%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot&op=index&view=viewparam
--- NEW FILE testget.4 ---
obj=cn%3Dslapd-localhost%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot&op=empty&view=viewparam
--- NEW FILE testget.5 ---
obj=cn%3Dslapd-localhost%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot&op=framepaint&view=viewparam
--- NEW FILE testget.6 ---
obj=cn%3Dslapd-localhost%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot&op=viewselect&view=viewparam
--- NEW FILE testget.7 ---
obj=cn%3Dslapd-localhost%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot&op=serveractivate&view=viewparam
--- NEW FILE testget.8 ---
obj=cn%3Dslapd-localhost%2C+cn%3DFedora+Directory+Server%2C+cn%3DServer+Group%2C+cn%3Dlocalhost.localdomain%2C+ou%3Dlocaldomain%2C+o%3DNetscapeRoot&view=viewparam
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/help testget.1, NONE, 1.1 testget.10, NONE, 1.1 testget.11, NONE, 1.1 testget.12, NONE, 1.1 testget.2, NONE, 1.1 testget.3, NONE, 1.1 testget.4, NONE, 1.1 testget.5, NONE, 1.1 testget.6, NONE, 1.1 testget.7, NONE, 1.1 testget.8, NONE, 1.1 testget.9, NONE, 1.1
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/help
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/help
Added Files:
testget.1 testget.10 testget.11 testget.12 testget.2 testget.3
testget.4 testget.5 testget.6 testget.7 testget.8 testget.9
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
--- NEW FILE testget.10 ---
helpdir=admin&token=ViewData&mapfile=tokens.map&debug=yes
--- NEW FILE testget.11 ---
helpdir=slapd&token=configuration-system-settings-help&debug=yes
--- NEW FILE testget.12 ---
helpdir=slapd&token=configuration-system-settings-help&mapfile=tokens.map&debug=yes
--- NEW FILE testget.2 ---
genlib=
--- NEW FILE testget.3 ---
helpdir=
--- NEW FILE testget.4 ---
helpdir=&token=
--- NEW FILE testget.5 ---
helpdir=../../../dev/null&token=../../../../dev/null
--- NEW FILE testget.6 ---
helpdir=../../../dev/null&token=../../../../dev/null&mapfile=../../../../dev/null
--- NEW FILE testget.7 ---
helpdir=help&token=help&mapfile=help&debug=yes
--- NEW FILE testget.8 ---
helpdir=help&token=help&debug=yes
--- NEW FILE testget.9 ---
helpdir=admin&token=ViewData&debug=yes
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/download testget.1, NONE, 1.1
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/download
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/download
Added Files:
testget.1
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/config testget.1, NONE, 1.1 testget.10, NONE, 1.1 testget.11, NONE, 1.1 testget.12, NONE, 1.1 testget.13, NONE, 1.1 testget.2, NONE, 1.1 testget.3, NONE, 1.1 testget.4, NONE, 1.1 testget.5, NONE, 1.1 testget.6, NONE, 1.1 testget.7, NONE, 1.1 testget.8, NONE, 1.1 testget.9, NONE, 1.1 testpost.1, NONE, 1.1 testpost.10, NONE, 1.1 testpost.11, NONE, 1.1 testpost.12, NONE, 1.1 testpost.13, NONE, 1.1 testpost.2, NONE, 1.1 testpost.3, NONE, 1.1 testpost.4, NONE, 1.1 te
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/config
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/config
Added Files:
testget.1 testget.10 testget.11 testget.12 testget.13
testget.2 testget.3 testget.4 testget.5 testget.6 testget.7
testget.8 testget.9 testpost.1 testpost.10 testpost.11
testpost.12 testpost.13 testpost.2 testpost.3 testpost.4
testpost.5 testpost.6 testpost.7 testpost.8 testpost.9
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
--- NEW FILE testget.10 ---
op=set&nsServerID=&serverRoot=&serverProductName=&serverHostName=&installationTimeStamp=&configuration.nsServerPort=&configuration.nsSuiteSpotUser=&configuration.nsAdminEnableEnduser=&configuration.nsAdminEnableDSGW=&configuration.nsDirectoryInfoRef=&configuration.nsAdminUsers=&configuration.nsErrorLog=&configuration.nsPidLog=&configuration.nsAccessLog=&configuration.nsAdminCacheLifetime=&configuration.nsAdminAccessHosts=&configuration.nsAdminAccessAddresses=&configuration.nsAdminOneACLDir=&configuration.nsDefaultAcceptLanguage=&
--- NEW FILE testget.11 ---
op=get&bogusattr1=bogusval&bogusattr2=bogusval&bogus.bogusattr3=bogusval
--- NEW FILE testget.12 ---
op=set&nsServerID=newid&serverRoot=/opt/newsroot&serverProductName=New+Name&serverHostName=newname&installationTimeStamp=newtime&configuration.nsServerPort=12345&configuration.nsSuiteSpotUser=newuser&configuration.nsAdminEnableEnduser=newenduser&configuration.nsAdminEnableDSGW=newenabledsgw&configuration.nsDirectoryInfoRef=newinforef&configuration.nsAdminUsers=newadmpw&configuration.nsErrorLog=newerrorlog&configuration.nsPidLog=newpidlog&configuration.nsAccessLog=newaccesslog&configuration.nsAdminCacheLifetime=newcachelifetime&configuration.nsAdminAccessHosts=newaccesshosts&configuration.nsAdminAccessAddresses=newipaddr&configuration.nsAdminOneACLDir=newacldir&configuration.nsDefaultAcceptLanguage=newlang&
--- NEW FILE testget.13 ---
op=set&nsServerID=newid&serverRoot=/opt/newsroot&serverProductName=New+Name&serverHostName=newname&installationTimeStamp=newtime&configuration.nsServerPort=12345&configuration.nsAdminEnableEnduser=newenduser&configuration.nsAdminEnableDSGW=newenabledsgw&configuration.nsDirectoryInfoRef=newinforef&configuration.nsAdminUsers=newadmpw&configuration.nsErrorLog=newerrorlog&configuration.nsAccessLog=newaccesslog&configuration.nsAdminCacheLifetime=newcachelifetime&configuration.nsAdminAccessHosts=newaccesshosts&configuration.nsAdminAccessAddresses=newipaddr&configuration.nsAdminOneACLDir=newacldir&configuration.nsDefaultAcceptLanguage=newlang&
--- NEW FILE testget.2 ---
op=
--- NEW FILE testget.3 ---
op=get
--- NEW FILE testget.4 ---
op=set
--- NEW FILE testget.5 ---
op=force_set
--- NEW FILE testget.6 ---
op=bogus
--- NEW FILE testget.7 ---
op=get&objectClass=&nsServerID=&serverRoot=&serverProductName=&serverHostName=&installationTimeStamp=&configuration.objectClass=&configuration.nsServerPort=&configuration.nsSuiteSpotUser=&configuration.nsAdminEnableEnduser=&configuration.nsAdminEnableDSGW=&configuration.nsDirectoryInfoRef=&configuration.nsAdminUsers=&configuration.nsErrorLog=&configuration.nsPidLog=&configuration.nsAccessLog=&configuration.nsAdminCacheLifetime=&configuration.nsAdminAccessHosts=&configuration.nsAdminAccessAddresses=&configuration.nsAdminOneACLDir=&configuration.nsDefaultAcceptLanguage=&
--- NEW FILE testget.8 ---
op=get&bogusattr1=&bogusattr2=&bogus.bogusattr3=
--- NEW FILE testget.9 ---
op=set&nsServerID=newid&serverRoot=/opt/newsroot&serverProductName=New+Name&serverHostName=newname&installationTimeStamp=newtime&configuration.nsServerPort=newport&configuration.nsSuiteSpotUser=newuser&configuration.nsAdminEnableEnduser=newenduser&configuration.nsAdminEnableDSGW=newenabledsgw&configuration.nsDirectoryInfoRef=newinforef&configuration.nsAdminUsers=newadmpw&configuration.nsErrorLog=newerrorlog&configuration.nsPidLog=newpidlog&configuration.nsAccessLog=newaccesslog&configuration.nsAdminCacheLifetime=newcachelifetime&configuration.nsAdminAccessHosts=newaccesshosts&configuration.nsAdminAccessAddresses=newipaddr&configuration.nsAdminOneACLDir=newacldir&configuration.nsDefaultAcceptLanguage=newlang&
--- NEW FILE testpost.1 ---
--- NEW FILE testpost.10 ---
op=set&nsServerID=&serverRoot=&serverProductName=&serverHostName=&installationTimeStamp=&configuration.nsServerPort=&configuration.nsSuiteSpotUser=&configuration.nsAdminEnableEnduser=&configuration.nsAdminEnableDSGW=&configuration.nsDirectoryInfoRef=&configuration.nsAdminUsers=&configuration.nsErrorLog=&configuration.nsPidLog=&configuration.nsAccessLog=&configuration.nsAdminCacheLifetime=&configuration.nsAdminAccessHosts=&configuration.nsAdminAccessAddresses=&configuration.nsAdminOneACLDir=&configuration.nsDefaultAcceptLanguage=&
--- NEW FILE testpost.11 ---
op=get&bogusattr1=bogusval&bogusattr2=bogusval&bogus.bogusattr3=bogusval
--- NEW FILE testpost.12 ---
op=set&nsServerID=newid&serverRoot=/opt/newsroot&serverProductName=New+Name&serverHostName=newname&installationTimeStamp=newtime&configuration.nsServerPort=12345&configuration.nsSuiteSpotUser=newuser&configuration.nsAdminEnableEnduser=newenduser&configuration.nsAdminEnableDSGW=newenabledsgw&configuration.nsDirectoryInfoRef=newinforef&configuration.nsAdminUsers=newadmpw&configuration.nsErrorLog=newerrorlog&configuration.nsPidLog=newpidlog&configuration.nsAccessLog=newaccesslog&configuration.nsAdminCacheLifetime=newcachelifetime&configuration.nsAdminAccessHosts=newaccesshosts&configuration.nsAdminAccessAddresses=newipaddr&configuration.nsAdminOneACLDir=newacldir&configuration.nsDefaultAcceptLanguage=newlang&
--- NEW FILE testpost.13 ---
op=set&nsServerID=newid&serverRoot=/opt/newsroot&serverProductName=New+Name&serverHostName=newname&installationTimeStamp=newtime&configuration.nsServerPort=12345&configuration.nsAdminEnableEnduser=newenduser&configuration.nsAdminEnableDSGW=newenabledsgw&configuration.nsDirectoryInfoRef=newinforef&configuration.nsAdminUsers=newadmpw&configuration.nsErrorLog=newerrorlog&configuration.nsAccessLog=newaccesslog&configuration.nsAdminCacheLifetime=newcachelifetime&configuration.nsAdminAccessHosts=newaccesshosts&configuration.nsAdminAccessAddresses=newipaddr&configuration.nsAdminOneACLDir=newacldir&configuration.nsDefaultAcceptLanguage=newlang&
--- NEW FILE testpost.2 ---
op=
--- NEW FILE testpost.3 ---
op=get
--- NEW FILE testpost.4 ---
op=set
--- NEW FILE testpost.5 ---
op=force_set
--- NEW FILE testpost.6 ---
op=bogus
--- NEW FILE testpost.7 ---
op=get&objectClass=&nsServerID=&serverRoot=&serverProductName=&serverHostName=&installationTimeStamp=&configuration.objectClass=&configuration.nsServerPort=&configuration.nsSuiteSpotUser=&configuration.nsAdminEnableEnduser=&configuration.nsAdminEnableDSGW=&configuration.nsDirectoryInfoRef=&configuration.nsAdminUsers=&configuration.nsErrorLog=&configuration.nsPidLog=&configuration.nsAccessLog=&configuration.nsAdminCacheLifetime=&configuration.nsAdminAccessHosts=&configuration.nsAdminAccessAddresses=&configuration.nsAdminOneACLDir=&configuration.nsDefaultAcceptLanguage=&
--- NEW FILE testpost.8 ---
op=get&bogusattr1=&bogusattr2=&bogus.bogusattr3=
--- NEW FILE testpost.9 ---
op=set&nsServerID=newid&serverRoot=/opt/newsroot&serverProductName=New+Name&serverHostName=newname&installationTimeStamp=newtime&configuration.nsServerPort=newport&configuration.nsSuiteSpotUser=newuser&configuration.nsAdminEnableEnduser=newenduser&configuration.nsAdminEnableDSGW=newenabledsgw&configuration.nsDirectoryInfoRef=newinforef&configuration.nsAdminUsers=newadmpw&configuration.nsErrorLog=newerrorlog&configuration.nsPidLog=newpidlog&configuration.nsAccessLog=newaccesslog&configuration.nsAdminCacheLifetime=newcachelifetime&configuration.nsAdminAccessHosts=newaccesshosts&configuration.nsAdminAccessAddresses=newipaddr&configuration.nsAdminOneACLDir=newacldir&configuration.nsDefaultAcceptLanguage=newlang&
15 years, 10 months
[Fedora-directory-commits] adminserver/tests/dsconfig testget.1, NONE, 1.1 testget.10, NONE, 1.1 testget.2, NONE, 1.1 testget.3, NONE, 1.1 testget.4, NONE, 1.1 testget.5, NONE, 1.1 testget.6, NONE, 1.1 testget.7, NONE, 1.1 testget.8, NONE, 1.1 testget.9, NONE, 1.1
by Doctor Conrad
Author: rmeggins
Update of /cvs/dirsec/adminserver/tests/dsconfig
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv32253/adminserver/tests/dsconfig
Added Files:
testget.1 testget.10 testget.2 testget.3 testget.4 testget.5
testget.6 testget.7 testget.8 testget.9
Log Message:
Resolves: bug 239502, bug 186280
Description: adminserver: autotools, FHS, clean up CGI parameters
Fix Description: Too numerous to mention
--- NEW FILE testget.1 ---
--- NEW FILE testget.10 ---
op=setconfig&dsconfig.sieDN=newsiedn&dsconfig.isieDN=newisiedn&dsconfig.host=newhost&dsconfig.port=390&dsconfig.ssl=false
--- NEW FILE testget.2 ---
op=
--- NEW FILE testget.3 ---
op=getconfig
--- NEW FILE testget.4 ---
op=setconfig
--- NEW FILE testget.5 ---
=&=&=&=&=&=&=&=&=&=&=&=&=&=&=&=&=&=&=
--- NEW FILE testget.6 ---
op=bogus
--- NEW FILE testget.7 ---
op=setconfig&bogus=
--- NEW FILE testget.8 ---
op=setconfig&dsconfig.sieDN=&dsconfig.isieDN=&dsconfig.host=&dsconfig.port=&dsconfig.ssl=
--- NEW FILE testget.9 ---
op=setconfig&dsconfig.sieDN=newsiedn&dsconfig.isieDN=newisiedn&dsconfig.host=newhost&dsconfig.port=390&dsconfig.ssl=newssl
15 years, 10 months