r12608: Remove some unused #include lines.
[ira/wip.git] / source4 / lib / ldb / tools / ldbrename.c
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 2 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, write to the Free Software
23    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24 */
25
26 /*
27  *  Name: ldb
28  *
29  *  Component: ldbrename
30  *
31  *  Description: utility to rename records - modelled on ldapmodrdn
32  *
33  *  Author: Andrew Tridgell
34  *  Author: Stefan Metzmacher
35  */
36
37 #include "includes.h"
38 #include "ldb/include/ldb.h"
39 #include "ldb/tools/cmdline.h"
40
41 #ifdef _SAMBA_BUILD_
42 #include "system/filesys.h"
43 #endif
44
45 static void usage(void)
46 {
47         printf("Usage: ldbrename [<options>] <olddn> <newdn>\n");
48         printf("Options:\n");
49         printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
50         printf("  -o options       pass options like modules to activate\n");
51         printf("              e.g: -o modules:timestamps\n");
52         printf("\n");
53         printf("Renames records in a ldb\n\n");
54         exit(1);
55 }
56
57
58  int main(int argc, const char **argv)
59 {
60         struct ldb_context *ldb;
61         int ret;
62         struct ldb_cmdline *options;
63         const struct ldb_dn *dn1, *dn2;
64
65         ldb = ldb_init(NULL);
66
67         options = ldb_cmdline_process(ldb, argc, argv, usage);
68
69         if (options->argc < 2) {
70                 usage();
71         }
72
73         dn1 = ldb_dn_explode(ldb, options->argv[0]);
74         dn2 = ldb_dn_explode(ldb, options->argv[1]);
75
76         ret = ldb_rename(ldb, dn1, dn2);
77         if (ret == 0) {
78                 printf("Renamed 1 record\n");
79         } else  {
80                 printf("rename of '%s' to '%s' failed - %s\n", 
81                         options->argv[0], options->argv[1], ldb_errstring(ldb));
82         }
83
84         talloc_free(ldb);
85         
86         return ret;
87 }