source: trunk-3.0/source/dynconfig.c@ 101

Last change on this file since 101 was 13, checked in by Yuri Dario, 18 years ago

Use d:\home\yuri for nmbd logs.

File size: 3.8 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3 Copyright (C) 2001 by Martin Pool <mbp@samba.org>
4 Copyright (C) 2003 by Jim McDonough <jmcd@us.ibm.com>
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 2 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, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
21#include "includes.h"
22
23/**
24 * @file dynconfig.c
25 *
26 * @brief Global configurations, initialized to configured defaults.
27 *
28 * This file should be the only file that depends on path
29 * configuration (--prefix, etc), so that if ./configure is re-run,
30 * all programs will be appropriately updated. Everything else in
31 * Samba should import extern variables from here, rather than relying
32 * on preprocessor macros.
33 *
34 * Eventually some of these may become even more variable, so that
35 * they can for example consistently be set across the whole of Samba
36 * by command-line parameters, config file entries, or environment
37 * variables.
38 *
39 * @todo Perhaps eventually these should be merged into the parameter
40 * table? There's kind of a chicken-and-egg situation there...
41 **/
42
43char const *dyn_SBINDIR = SBINDIR,
44 *dyn_BINDIR = BINDIR,
45 *dyn_SWATDIR = SWATDIR;
46
47#ifdef __OS2__
48const char * getconfigfile()
49{
50 static pstring buffer = "";
51 if (!*buffer)
52 {
53 snprintf(buffer, 260, "%s/samba/smb.conf", getenv("ETC"));
54 }
55 return buffer;
56}
57
58const char * getlogbase()
59{
60 static pstring buffer = "";
61#if 1
62 if (!*buffer)
63 {
64 snprintf(buffer, 260, "%s/samba/log", getenv("ETC"));
65 }
66#endif
67 return buffer;
68}
69
70const char * getlockdir()
71{
72 static pstring buffer = "";
73 if (!*buffer)
74 {
75 snprintf(buffer, 260, "%s/samba/lock", getenv("ETC"));
76 }
77 return buffer;
78}
79
80const char * getpiddir()
81{
82 static pstring buffer = "";
83 if (!*buffer)
84 {
85 snprintf(buffer, 260, "%s/samba/pid", getenv("ETC"));
86 }
87 return buffer;
88}
89
90const char * getprivatedir()
91{
92 static pstring buffer = "";
93 if (!*buffer)
94 {
95 snprintf(buffer, 260, "%s/samba/private", getenv("ETC"));
96 }
97 return buffer;
98}
99
100const char * getsmbpasswd()
101{
102 static pstring buffer = "";
103 if (!*buffer)
104 {
105 snprintf(buffer, 260, "%s/samba/private/smbpasswd", getenv("ETC"));
106 }
107 return buffer;
108}
109
110const char * getlmhosts()
111{
112 static pstring buffer = "";
113 if (!*buffer)
114 {
115 snprintf(buffer, 260, "%s/samba/lmhosts", getenv("ETC"));
116 }
117 return buffer;
118}
119
120/**
121 * @brief Samba library directory.
122 *
123 * @sa lib_path() to get the path to a file inside the LIBDIR.
124 **/
125pstring dyn_LIBDIR = LIBDIR;
126fstring dyn_SHLIBEXT = SHLIBEXT;
127
128
129#else
130
131pstring dyn_CONFIGFILE = CONFIGFILE; /**< Location of smb.conf file. **/
132
133/** Log file directory. **/
134pstring dyn_LOGFILEBASE = LOGFILEBASE;
135
136/** Statically configured LanMan hosts. **/
137pstring dyn_LMHOSTSFILE = LMHOSTSFILE;
138
139/**
140 * @brief Samba library directory.
141 *
142 * @sa lib_path() to get the path to a file inside the LIBDIR.
143 **/
144pstring dyn_LIBDIR = LIBDIR;
145fstring dyn_SHLIBEXT = SHLIBEXT;
146
147/**
148 * @brief Directory holding lock files.
149 *
150 * Not writable, but used to set a default in the parameter table.
151 **/
152pstring dyn_LOCKDIR = LOCKDIR;
153pstring dyn_PIDDIR = PIDDIR;
154
155pstring dyn_SMB_PASSWD_FILE = SMB_PASSWD_FILE;
156pstring dyn_PRIVATE_DIR = PRIVATE_DIR;
157#endif /* __OS2__ */
Note: See TracBrowser for help on using the repository browser.