[389-ds-base] branch master updated (1489038 -> ad1b78e)
by git repository hosting
This is an automated email from the git hooks/post-receive script.
mreynolds pushed a change to branch master
in repository 389-ds-base.
from 1489038 Issue: 48064
add ad1b78e Ticket 50056 - Fix UI bugs (part 2)
No new revisions were added by this update.
Summary of changes:
src/cockpit/389-console/src/ds.js | 58 +++++++++++++++++++++-------
src/cockpit/389-console/src/replication.html | 4 --
src/cockpit/389-console/src/replication.js | 2 +
src/cockpit/389-console/src/servers.html | 12 ++----
src/cockpit/389-console/src/servers.js | 9 ++++-
src/lib389/lib389/cli_conf/replication.py | 19 +++++++++
src/lib389/lib389/instance/options.py | 4 +-
src/lib389/lib389/instance/remove.py | 11 ++++++
src/lib389/lib389/instance/setup.py | 42 ++++++++++----------
src/lib389/lib389/replica.py | 8 ++++
10 files changed, 119 insertions(+), 50 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch master updated (ecdf6d8 -> 1489038)
by git repository hosting
This is an automated email from the git hooks/post-receive script.
mreynolds pushed a change to branch master
in repository 389-ds-base.
from ecdf6d8 Ticket 50099 - extend error messages
add 1489038 Issue: 48064
No new revisions were added by this update.
Summary of changes:
.../suites/disk_monitoring/disk_monitoring_test.py | 569 +++++++++++++++++++++
1 file changed, 569 insertions(+)
create mode 100644 dirsrvtests/tests/suites/disk_monitoring/disk_monitoring_test.py
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch master updated: Ticket 50099 - extend error messages
by git repository hosting
This is an automated email from the git hooks/post-receive script.
tbordaz pushed a commit to branch master
in repository 389-ds-base.
The following commit(s) were added to refs/heads/master by this push:
new ecdf6d8 Ticket 50099 - extend error messages
ecdf6d8 is described below
commit ecdf6d8dfcc57775dda55acf46c1d2c314e77d50
Author: Thierry Bordaz <tbordaz(a)redhat.com>
AuthorDate: Wed Dec 19 14:30:57 2018 +0100
Ticket 50099 - extend error messages
---
ldap/servers/slapd/security_wrappers.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ldap/servers/slapd/security_wrappers.c b/ldap/servers/slapd/security_wrappers.c
index 49b1968..9c63318 100644
--- a/ldap/servers/slapd/security_wrappers.c
+++ b/ldap/servers/slapd/security_wrappers.c
@@ -239,15 +239,15 @@ slapd_system_isFIPS()
char buf[sizeof (PRIu64)];
int val;
if (PR_SUCCESS != PR_Access(FIPS_ENABLED, PR_ACCESS_READ_OK)) {
- slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not read %s\n", FIPS_ENABLED);
+ slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not access %s - assuming FIPS is OFF\n", FIPS_ENABLED);
goto done;
}
if ((prfd = PR_Open(FIPS_ENABLED, PR_RDONLY, SLAPD_DEFAULT_FILE_MODE)) == NULL) {
- slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not open %s\n", FIPS_ENABLED);
+ slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not open %s - assuming FIPS is OFF\n", FIPS_ENABLED);
goto done;
}
if (PR_Read(prfd, buf, sizeof (buf)) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not read %s\n", FIPS_ENABLED);
+ slapi_log_err(SLAPI_LOG_ERR, "slapd_system_isFIPS", "Can not read %s - assuming FIPS is OFF\n", FIPS_ENABLED);
PR_Close(prfd);
goto done;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch master updated (00c3b7a -> 76847e8)
by git repository hosting
This is an automated email from the git hooks/post-receive script.
tbordaz pushed a change to branch master
in repository 389-ds-base.
from 00c3b7a Issue 50041 - Add basic plugin UI/CLI wrappers
add 76847e8 Ticket 50099 - In FIPS mode, the server can select an unsupported password storage scheme
No new revisions were added by this update.
Summary of changes:
ldap/servers/slapd/security_wrappers.c | 51 +++++++++++++++++++++++++++++++++-
1 file changed, 50 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch master updated (4b53c31 -> 00c3b7a)
by git repository hosting
This is an automated email from the git hooks/post-receive script.
spichugi pushed a change to branch master
in repository 389-ds-base.
from 4b53c31 Issue: 50082 - Port state test suite
add 00c3b7a Issue 50041 - Add basic plugin UI/CLI wrappers
No new revisions were added by this update.
Summary of changes:
src/cockpit/389-console/package.json | 13 +-
src/cockpit/389-console/src/css/ds.css | 60 +++-
src/cockpit/389-console/src/ds.js | 8 +-
src/cockpit/389-console/src/index.es6 | 35 ++-
src/cockpit/389-console/src/index.html | 2 +-
src/cockpit/389-console/src/lib/customCollapse.jsx | 56 ++++
.../389-console/src/lib/customTableToolbar.jsx | 41 ++-
.../389-console/src/lib/plugins/accountPolicy.jsx | 45 +++
.../src/lib/plugins/attributeUniqueness.jsx | 45 +++
.../389-console/src/lib/plugins/autoMembership.jsx | 45 +++
src/cockpit/389-console/src/lib/plugins/dna.jsx | 45 +++
.../src/lib/plugins/linkedAttributes.jsx | 45 +++
.../389-console/src/lib/plugins/managedEntries.jsx | 45 +++
.../389-console/src/lib/plugins/memberOf.jsx | 45 +++
.../src/lib/plugins/passthroughAuthentication.jsx | 45 +++
.../src/lib/plugins/pluginBasicConfig.jsx | 334 +++++++++++++++++++++
.../389-console/src/lib/plugins/pluginModal.jsx | 102 ++-----
.../389-console/src/lib/plugins/pluginTable.jsx | 32 +-
.../src/lib/plugins/referentialIntegrity.jsx | 45 +++
.../389-console/src/lib/plugins/retroChangelog.jsx | 45 +++
.../src/lib/plugins/rootDNAccessControl.jsx | 45 +++
src/cockpit/389-console/src/lib/plugins/usn.jsx | 45 +++
src/cockpit/389-console/src/plugins.jsx | 318 ++++++++++++++++++--
src/cockpit/389-console/src/replication.js | 12 +-
src/cockpit/389-console/src/servers.js | 42 ++-
src/lib389/cli/dsconf | 12 -
src/lib389/lib389/cli_conf/__init__.py | 48 ++-
src/lib389/lib389/cli_conf/plugin.py | 140 ++-------
.../lib389/cli_conf/plugins/accountpolicy.py | 16 +
src/lib389/lib389/cli_conf/plugins/attruniq.py | 16 +
src/lib389/lib389/cli_conf/plugins/automember.py | 33 +-
src/lib389/lib389/cli_conf/plugins/dna.py | 16 +
src/lib389/lib389/cli_conf/plugins/linkedattr.py | 16 +
.../lib389/cli_conf/plugins/managedentries.py | 16 +
src/lib389/lib389/cli_conf/plugins/memberof.py | 4 +-
.../lib389/cli_conf/plugins/passthroughauth.py | 16 +
src/lib389/lib389/cli_conf/plugins/referint.py | 4 +-
.../lib389/cli_conf/plugins/retrochangelog.py | 16 +
src/lib389/lib389/cli_conf/plugins/rootdn_ac.py | 4 +-
src/lib389/lib389/cli_conf/plugins/usn.py | 4 +-
src/lib389/lib389/cli_conf/plugins/whoami.py | 4 +-
src/lib389/lib389/plugins.py | 40 ++-
42 files changed, 1679 insertions(+), 321 deletions(-)
create mode 100644 src/cockpit/389-console/src/lib/customCollapse.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/accountPolicy.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/attributeUniqueness.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/autoMembership.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/dna.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/linkedAttributes.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/managedEntries.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/memberOf.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/passthroughAuthentication.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/pluginBasicConfig.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/referentialIntegrity.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/retroChangelog.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/rootDNAccessControl.jsx
create mode 100644 src/cockpit/389-console/src/lib/plugins/usn.jsx
create mode 100644 src/lib389/lib389/cli_conf/plugins/accountpolicy.py
create mode 100644 src/lib389/lib389/cli_conf/plugins/attruniq.py
create mode 100644 src/lib389/lib389/cli_conf/plugins/dna.py
create mode 100644 src/lib389/lib389/cli_conf/plugins/linkedattr.py
create mode 100644 src/lib389/lib389/cli_conf/plugins/managedentries.py
create mode 100644 src/lib389/lib389/cli_conf/plugins/passthroughauth.py
create mode 100644 src/lib389/lib389/cli_conf/plugins/retrochangelog.py
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch master updated (8d51c97 -> 4b53c31)
by git repository hosting
This is an automated email from the git hooks/post-receive script.
vashirov pushed a change to branch master
in repository 389-ds-base.
from 8d51c97 Ticket 49574 - remove index subsystem
add 4b53c31 Issue: 50082 - Port state test suite
No new revisions were added by this update.
Summary of changes:
dirsrvtests/{ => tests/suites/stat}/__init__.py | 0
dirsrvtests/tests/suites/stat/mmt_state_test.py | 354 ++++++++++++++++++++++++
2 files changed, 354 insertions(+)
copy dirsrvtests/{ => tests/suites/stat}/__init__.py (100%)
create mode 100644 dirsrvtests/tests/suites/stat/mmt_state_test.py
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch master updated (07b367e -> 8d51c97)
by git repository hosting
This is an automated email from the git hooks/post-receive script.
lkrispen pushed a change to branch master
in repository 389-ds-base.
from 07b367e Issue 49588 - Add py3 support for tickets : part-5
add 8d51c97 Ticket 49574 - remove index subsystem
No new revisions were added by this update.
Summary of changes:
Makefile.am | 3 -
ldap/servers/slapd/back-ldbm/filterindex.c | 8 -
ldap/servers/slapd/back-ldbm/idlapi.h | 38 -
ldap/servers/slapd/back-ldbm/init.c | 17 -
ldap/servers/slapd/index_subsys.h | 56 --
ldap/servers/slapd/index_subsystem.c | 1205 ----------------------------
ldap/servers/slapd/libmakefile | 2 +-
ldap/servers/slapd/opshared.c | 5 -
8 files changed, 1 insertion(+), 1333 deletions(-)
delete mode 100644 ldap/servers/slapd/back-ldbm/idlapi.h
delete mode 100644 ldap/servers/slapd/index_subsys.h
delete mode 100644 ldap/servers/slapd/index_subsystem.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch 389-ds-base-1.3.8 updated: Issue 49618 - Increase cachememsize and dncachememsize variable sizes
by git repository hosting
This is an automated email from the git hooks/post-receive script.
mreynolds pushed a commit to branch 389-ds-base-1.3.8
in repository 389-ds-base.
The following commit(s) were added to refs/heads/389-ds-base-1.3.8 by this push:
new a82b02f Issue 49618 - Increase cachememsize and dncachememsize variable sizes
a82b02f is described below
commit a82b02fff909bd3dc09faa7f7d2d6c35150a69bb
Author: Simon Pichugin <spichugi(a)redhat.com>
AuthorDate: Fri Dec 14 17:34:34 2018 +0100
Issue 49618 - Increase cachememsize and dncachememsize variable sizes
Description: nssapld-cachememsize is reverted to a smaller value
if the cap is reached. Increase it to UINT64.
https://pagure.io/389-ds-base/issue/49618
Reviewed by: tbordaz, mreynolds (Thanks!)
---
ldap/servers/slapd/back-ldbm/ldbm_config.c | 2 +-
ldap/servers/slapd/back-ldbm/ldbm_instance_config.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ldap/servers/slapd/back-ldbm/ldbm_config.c b/ldap/servers/slapd/back-ldbm/ldbm_config.c
index 4e1a943..144c5ef 100644
--- a/ldap/servers/slapd/back-ldbm/ldbm_config.c
+++ b/ldap/servers/slapd/back-ldbm/ldbm_config.c
@@ -2118,7 +2118,7 @@ ldbm_config_get(void *arg, config_info *config, char *buf)
break;
case CONFIG_TYPE_SIZE_T:
val = (size_t)config->config_get_fn(arg);
- sprintf(buf, "%lu", (long unsigned int)val);
+ sprintf(buf, "%" PRIu32, (uint32_t)val);
break;
case CONFIG_TYPE_UINT64:
val = (uint64_t)((uintptr_t)config->config_get_fn(arg));
diff --git a/ldap/servers/slapd/back-ldbm/ldbm_instance_config.c b/ldap/servers/slapd/back-ldbm/ldbm_instance_config.c
index 643628c..5eac1c1 100644
--- a/ldap/servers/slapd/back-ldbm/ldbm_instance_config.c
+++ b/ldap/servers/slapd/back-ldbm/ldbm_instance_config.c
@@ -366,11 +366,11 @@ ldbm_instance_config_require_index_set(void *arg,
*----------------------------------------------------------------------*/
static config_info ldbm_instance_config[] = {
{CONFIG_INSTANCE_CACHESIZE, CONFIG_TYPE_LONG, "-1", &ldbm_instance_config_cachesize_get, &ldbm_instance_config_cachesize_set, CONFIG_FLAG_ALWAYS_SHOW | CONFIG_FLAG_ALLOW_RUNNING_CHANGE},
- {CONFIG_INSTANCE_CACHEMEMSIZE, CONFIG_TYPE_SIZE_T, DEFAULT_CACHE_SIZE_STR, &ldbm_instance_config_cachememsize_get, &ldbm_instance_config_cachememsize_set, CONFIG_FLAG_ALWAYS_SHOW | CONFIG_FLAG_ALLOW_RUNNING_CHANGE},
+ {CONFIG_INSTANCE_CACHEMEMSIZE, CONFIG_TYPE_UINT64, DEFAULT_CACHE_SIZE_STR, &ldbm_instance_config_cachememsize_get, &ldbm_instance_config_cachememsize_set, CONFIG_FLAG_ALWAYS_SHOW | CONFIG_FLAG_ALLOW_RUNNING_CHANGE},
{CONFIG_INSTANCE_READONLY, CONFIG_TYPE_ONOFF, "off", &ldbm_instance_config_readonly_get, &ldbm_instance_config_readonly_set, CONFIG_FLAG_ALWAYS_SHOW | CONFIG_FLAG_ALLOW_RUNNING_CHANGE},
{CONFIG_INSTANCE_REQUIRE_INDEX, CONFIG_TYPE_ONOFF, "off", &ldbm_instance_config_require_index_get, &ldbm_instance_config_require_index_set, CONFIG_FLAG_ALWAYS_SHOW | CONFIG_FLAG_ALLOW_RUNNING_CHANGE},
{CONFIG_INSTANCE_DIR, CONFIG_TYPE_STRING, NULL, &ldbm_instance_config_instance_dir_get, &ldbm_instance_config_instance_dir_set, CONFIG_FLAG_ALWAYS_SHOW},
- {CONFIG_INSTANCE_DNCACHEMEMSIZE, CONFIG_TYPE_SIZE_T, DEFAULT_DNCACHE_SIZE_STR, &ldbm_instance_config_dncachememsize_get, &ldbm_instance_config_dncachememsize_set, CONFIG_FLAG_ALWAYS_SHOW | CONFIG_FLAG_ALLOW_RUNNING_CHANGE},
+ {CONFIG_INSTANCE_DNCACHEMEMSIZE, CONFIG_TYPE_UINT64, DEFAULT_DNCACHE_SIZE_STR, &ldbm_instance_config_dncachememsize_get, &ldbm_instance_config_dncachememsize_set, CONFIG_FLAG_ALWAYS_SHOW | CONFIG_FLAG_ALLOW_RUNNING_CHANGE},
{NULL, 0, NULL, NULL, NULL, 0}};
void
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch master updated (174c468 -> 07b367e)
by git repository hosting
This is an automated email from the git hooks/post-receive script.
mreynolds pushed a change to branch master
in repository 389-ds-base.
from 174c468 Ticket 50095 - cleanup deprecated key.h includes
add 07b367e Issue 49588 - Add py3 support for tickets : part-5
No new revisions were added by this update.
Summary of changes:
dirsrvtests/tests/tickets/ticket48252_test.py | 15 +-
dirsrvtests/tests/tickets/ticket48266_test.py | 24 +--
dirsrvtests/tests/tickets/ticket48325_test.py | 84 +++++----
dirsrvtests/tests/tickets/ticket48759_test.py | 44 ++---
dirsrvtests/tests/tickets/ticket48906_test.py | 16 +-
dirsrvtests/tests/tickets/ticket49020_test.py | 5 +-
dirsrvtests/tests/tickets/ticket49039_test.py | 77 ++-------
dirsrvtests/tests/tickets/ticket49121_test.py | 239 ++++++++++++--------------
dirsrvtests/tests/tickets/ticket49180_test.py | 76 ++------
dirsrvtests/tests/tickets/ticket49287_test.py | 75 +++-----
dirsrvtests/tests/tickets/ticket49303_test.py | 11 +-
11 files changed, 274 insertions(+), 392 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months
[389-ds-base] branch master updated: Ticket 50095 - cleanup deprecated key.h includes
by git repository hosting
This is an automated email from the git hooks/post-receive script.
mreynolds pushed a commit to branch master
in repository 389-ds-base.
The following commit(s) were added to refs/heads/master by this push:
new 174c468 Ticket 50095 - cleanup deprecated key.h includes
174c468 is described below
commit 174c4683bcba01768a90093840121d43bbdbdbfb
Author: Mark Reynolds <mreynolds(a)redhat.com>
AuthorDate: Fri Dec 14 16:21:41 2018 -0500
Ticket 50095 - cleanup deprecated key.h includes
Description: key.h has been deprecated in favor of keyhi.h
https://pagure.io/389-ds-base/issue/50095
Reviewed by: mreynolds(one line commit rule)
---
include/libaccess/usrcache.h | 2 +-
ldap/servers/slapd/security_wrappers.c | 2 +-
ldap/servers/slapd/ssl.c | 2 +-
lib/ldaputil/cert.c | 2 +-
lib/ldaputil/certmap.c | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/include/libaccess/usrcache.h b/include/libaccess/usrcache.h
index fcdee60..d710e57 100644
--- a/include/libaccess/usrcache.h
+++ b/include/libaccess/usrcache.h
@@ -22,7 +22,7 @@
/* Removed for new ns security integration
#include <sec.h>
*/
-#include <key.h>
+#include <keyhi.h>
#include <cert.h>
#include <prclist.h>
diff --git a/ldap/servers/slapd/security_wrappers.c b/ldap/servers/slapd/security_wrappers.c
index 41fe036..d055889 100644
--- a/ldap/servers/slapd/security_wrappers.c
+++ b/ldap/servers/slapd/security_wrappers.c
@@ -13,7 +13,7 @@
#include <ssl.h>
#include <nss.h>
-#include <key.h>
+#include <keyhi.h>
#include <certdb.h>
#include <cert.h>
#include <sslproto.h>
diff --git a/ldap/servers/slapd/ssl.c b/ldap/servers/slapd/ssl.c
index 0e6d15b..a7c3ab7 100644
--- a/ldap/servers/slapd/ssl.c
+++ b/ldap/servers/slapd/ssl.c
@@ -17,7 +17,7 @@
#include <sys/param.h>
#include <ssl.h>
#include <nss.h>
-#include <key.h>
+#include <keyhi.h>
#include <sslproto.h>
#include "secmod.h"
#include <string.h>
diff --git a/lib/ldaputil/cert.c b/lib/ldaputil/cert.c
index 73abba1..6c351af 100644
--- a/lib/ldaputil/cert.c
+++ b/lib/ldaputil/cert.c
@@ -21,7 +21,7 @@
#include <sec.h>
*/
#include "prmem.h"
-#include <key.h>
+#include <keyhi.h>
#include <cert.h>
#include <nss.h>
#include <ldaputil/certmap.h>
diff --git a/lib/ldaputil/certmap.c b/lib/ldaputil/certmap.c
index 0db2de1..efe531a 100644
--- a/lib/ldaputil/certmap.c
+++ b/lib/ldaputil/certmap.c
@@ -26,7 +26,7 @@
#include <prlink.h>
#include <prprf.h>
-#include <key.h>
+#include <keyhi.h>
#include <cert.h>
#define DEFINE_LDAPU_STRINGS 1
#include <ldaputil/certmap.h>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 5 months