From: Douglas Bagnall Date: Mon, 3 Mar 2025 23:54:11 +0000 (+1300) Subject: ldb:manpages: ldbedit: update url schemes X-Git-Tag: tevent-0.17.0~605 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6526db804b380c0bb4358d883dcb11263cc6ee1f;p=thirdparty%2Fsamba.git ldb:manpages: ldbedit: update url schemes no sqlite://, but ldaps:// ldb://, mdb://. Signed-off-by: Douglas Bagnall Reviewed-by: Jennifer Sutton Reviewed-by: Martin Schwenke --- diff --git a/lib/ldb/man/ldbedit.1.xml b/lib/ldb/man/ldbedit.1.xml index 627d20c423a..95c3403ebb8 100644 --- a/lib/ldb/man/ldbedit.1.xml +++ b/lib/ldb/man/ldbedit.1.xml @@ -35,7 +35,7 @@ DESCRIPTION ldbedit is a utility that allows you to edit LDB entries (in - tdb files, sqlite files or LDAP servers) using your preferred editor. + database files or LDAP servers) using your preferred editor. ldbedit generates an LDIF file based on your query, allows you to edit the LDIF, and then merges that LDIF back into the LDB backend. @@ -72,17 +72,21 @@ -H <ldb-url> - LDB URL to connect to. For a tdb database, - this will be of the form - tdb://filename. + LDB URL to connect to. For tdb and lmdb + databases, this will be of the form + tdb://filename or + mdb://filename, + respectively. The URL + ldb://filename will + try to detect the file format automatically. For a LDAP connection over unix domain sockets, this will be of the form ldapi://socket. For a (potentially remote) LDAP connection over TCP, this will be of the form - ldap://hostname. For - an SQLite database, this will be of the form - sqlite://filename. + ldap://hostname, or + ldaps://hostname + for a TLS protected connection.