1 | /*
|
---|
2 | ldb database library
|
---|
3 |
|
---|
4 | Copyright (C) Andrew Tridgell 2004
|
---|
5 | Copyright (C) Stefan Metzmacher 2004
|
---|
6 |
|
---|
7 | ** NOTE! The following LGPL license applies to the ldb
|
---|
8 | ** library. This does NOT imply that all of Samba is released
|
---|
9 | ** under the LGPL
|
---|
10 |
|
---|
11 | This library is free software; you can redistribute it and/or
|
---|
12 | modify it under the terms of the GNU Lesser General Public
|
---|
13 | License as published by the Free Software Foundation; either
|
---|
14 | version 3 of the License, or (at your option) any later version.
|
---|
15 |
|
---|
16 | This library is distributed in the hope that it will be useful,
|
---|
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
19 | Lesser General Public License for more details.
|
---|
20 |
|
---|
21 | You should have received a copy of the GNU Lesser General Public
|
---|
22 | License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
---|
23 | */
|
---|
24 |
|
---|
25 | /*
|
---|
26 | * Name: ldb
|
---|
27 | *
|
---|
28 | * Component: ldbrename
|
---|
29 | *
|
---|
30 | * Description: utility to rename records - modelled on ldapmodrdn
|
---|
31 | *
|
---|
32 | * Author: Andrew Tridgell
|
---|
33 | * Author: Stefan Metzmacher
|
---|
34 | */
|
---|
35 |
|
---|
36 | #include "ldb.h"
|
---|
37 | #include "tools/cmdline.h"
|
---|
38 |
|
---|
39 | static void usage(void)
|
---|
40 | {
|
---|
41 | printf("Usage: ldbrename [<options>] <olddn> <newdn>\n");
|
---|
42 | printf("Renames records in a ldb\n\n");
|
---|
43 | ldb_cmdline_help("ldbmodify", stdout);
|
---|
44 | exit(1);
|
---|
45 | }
|
---|
46 |
|
---|
47 |
|
---|
48 | int main(int argc, const char **argv)
|
---|
49 | {
|
---|
50 | struct ldb_context *ldb;
|
---|
51 | int ret;
|
---|
52 | struct ldb_cmdline *options;
|
---|
53 | struct ldb_dn *dn1, *dn2;
|
---|
54 |
|
---|
55 | ldb = ldb_init(NULL, NULL);
|
---|
56 |
|
---|
57 | options = ldb_cmdline_process(ldb, argc, argv, usage);
|
---|
58 |
|
---|
59 | if (options->argc < 2) {
|
---|
60 | usage();
|
---|
61 | }
|
---|
62 |
|
---|
63 | dn1 = ldb_dn_new(ldb, ldb, options->argv[0]);
|
---|
64 | dn2 = ldb_dn_new(ldb, ldb, options->argv[1]);
|
---|
65 |
|
---|
66 | if ( ! ldb_dn_validate(dn1)) {
|
---|
67 | printf("Invalid DN1: %s\n", options->argv[0]);
|
---|
68 | return -1;
|
---|
69 | }
|
---|
70 | if ( ! ldb_dn_validate(dn2)) {
|
---|
71 | printf("Invalid DN2: %s\n", options->argv[1]);
|
---|
72 | return -1;
|
---|
73 | }
|
---|
74 |
|
---|
75 | ret = ldb_rename(ldb, dn1, dn2);
|
---|
76 | if (ret == 0) {
|
---|
77 | printf("Renamed 1 record\n");
|
---|
78 | } else {
|
---|
79 | printf("rename of '%s' to '%s' failed - %s\n",
|
---|
80 | options->argv[0], options->argv[1], ldb_errstring(ldb));
|
---|
81 | }
|
---|
82 |
|
---|
83 | talloc_free(ldb);
|
---|
84 |
|
---|
85 | return ret;
|
---|
86 | }
|
---|