root/source4/param/provision.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* 
   2    Unix SMB/CIFS implementation.
   3    Samba utility functions
   4    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
   5    
   6    This program is free software; you can redistribute it and/or modify
   7    it under the terms of the GNU General Public License as published by
   8    the Free Software Foundation; either version 3 of the License, or
   9    (at your option) any later version.
  10    
  11    This program is distributed in the hope that it will be useful,
  12    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14    GNU General Public License for more details.
  15    
  16    You should have received a copy of the GNU General Public License
  17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18 */
  19 
  20 #ifndef _PROVISION_H_
  21 #define _PROVISION_H_
  22 
  23 struct provision_settings {
  24         const char *site_name;
  25         const char *root_dn_str; 
  26         const char *domain_dn_str;
  27         const char *config_dn_str;
  28         const char *schema_dn_str;
  29         const char *server_dn_str;
  30         const struct GUID *invocation_id;
  31         const char *netbios_name;
  32         const char *host_ip;
  33         const char *realm;
  34         const char *domain;
  35         const char *ntds_dn_str;
  36         const char *machine_password;
  37         const char *targetdir;
  38 };
  39 
  40 /* FIXME: Rename this to hostconfig ? */
  41 struct provision_result {
  42         const char *domaindn;
  43         struct ldb_context *samdb;
  44         struct loadparm_context *lp_ctx;
  45 };
  46 
  47 NTSTATUS provision_bare(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx,
  48                                                 struct provision_settings *settings,
  49                                                 struct provision_result *result);
  50 
  51 #endif /* _PROVISION_H_ */

/* [<][>][^][v][top][bottom][index][help] */