(file) Return to FixedPropertyTableLinux.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Config

 1 martin 1.43 //%LICENSE////////////////////////////////////////////////////////////////
 2 martin 1.44 //
 3 martin 1.43 // Licensed to The Open Group (TOG) under one or more contributor license
 4             // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 5             // this work for additional information regarding copyright ownership.
 6             // Each contributor licenses this file to you under the OpenPegasus Open
 7             // Source License; you may not use this file except in compliance with the
 8             // License.
 9 martin 1.44 //
10 martin 1.43 // Permission is hereby granted, free of charge, to any person obtaining a
11             // copy of this software and associated documentation files (the "Software"),
12             // to deal in the Software without restriction, including without limitation
13             // the rights to use, copy, modify, merge, publish, distribute, sublicense,
14             // and/or sell copies of the Software, and to permit persons to whom the
15             // Software is furnished to do so, subject to the following conditions:
16 martin 1.44 //
17 martin 1.43 // The above copyright notice and this permission notice shall be included
18             // in all copies or substantial portions of the Software.
19 martin 1.44 //
20 martin 1.43 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 martin 1.44 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 martin 1.43 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23             // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24             // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25             // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26             // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 martin 1.44 //
28 martin 1.43 //////////////////////////////////////////////////////////////////////////
29 kumpf  1.37 /*
30 kumpf  1.1  //
31             //%/////////////////////////////////////////////////////////////////////////////
32 kumpf  1.37 */
33 kumpf  1.1  
34 kumpf  1.34 #if defined(PEGASUS_USE_RELEASE_DIRS) && \
35                 defined(PEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS)
36             # include <Pegasus/Config/ProductDirectoryStructure.h>
37 denise.eckstein 1.26 #endif
38                      
39 kumpf           1.1  #ifdef PEGASUS_USE_RELEASE_CONFIG_OPTIONS
40 s.kodali        1.45 #ifndef PEGASUS_FLAVOR
41 kumpf           1.1      {"httpPort",            "5988"},
42                          {"httpsPort",           "5989"},
43 s.kodali        1.45 #endif
44 s.kodali        1.41 #ifdef PEGASUS_ENABLE_SLP
45 kumpf           1.1      {"slp",                 "false"},
46 s.kodali        1.41 #endif
47 kumpf           1.1      {"enableAuthentication", "true"},
48                          {"httpAuthType",        "Basic"},
49 denise.eckstein 1.17     {"enableBinaryRepository", "false"},
50 kumpf           1.1  #endif
51 kumpf           1.35 #if defined(PEGASUS_USE_RELEASE_DIRS)
52 kumpf           1.34 # if defined(PEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS)
53 denise.eckstein 1.26     {"traceFilePath",       PEGASUS_TRACE_FILE_PATH},
54 kumpf           1.34 #  if !defined(PEGASUS_USE_SYSLOGS)
55                          {"logdir",              PEGASUS_LOG_DIR},
56 mreddy          1.40     {"maxLogFileSizeKBytes",      "32768"},/* 32768 * 1024 = 33554432 (32MB)*/
57 kumpf           1.34 #  endif
58 denise.eckstein 1.26     {"passwordFilePath",     PEGASUS_CONFIG_DIR"/cimserver.passwd"},
59                          {"sslCertificateFilePath", PEGASUS_SSL_CERT_FILE_PATH},
60                          {"sslKeyFilePath",       PEGASUS_SSL_KEY_FILE_PATH},
61                          {"sslTrustStore",        PEGASUS_SSL_SERVER_TRUSTSTORE},
62 kumpf           1.34 #  ifdef PEGASUS_ENABLE_SSL_CRL_VERIFICATION
63 denise.eckstein 1.26     {"crlStore",             PEGASUS_SSL_SERVER_CRL},
64 kumpf           1.34 #  endif
65 denise.eckstein 1.26     {"repositoryDir",        PEGASUS_REPOSITORY_DIR},
66 kumpf           1.34     {"providerDir", PEGASUS_PROVIDER_LIB_DIR ":/usr/" PEGASUS_ARCH_LIB "/cmpi"},
67 b.whiteley      1.38     {"providerManagerDir",   PEGASUS_PROVIDER_MANAGER_LIB_DIR},
68 kumpf           1.34 # else /* PEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS */
69 kumpf           1.25     {"traceFilePath",       "/var/opt/tog-pegasus/cache/trace/cimserver.trc"},
70 kumpf           1.34 #  if !defined(PEGASUS_USE_SYSLOGS)
71 denise.eckstein 1.16     {"logdir",              "/var/opt/tog-pegasus/log"},
72 kumpf           1.34 #  endif
73 denise.eckstein 1.16     {"passwordFilePath",    "/etc/opt/tog-pegasus/cimserver.passwd"},
74                          {"sslCertificateFilePath", "/etc/opt/tog-pegasus/server.pem"},
75                          {"sslKeyFilePath",      "/etc/opt/tog-pegasus/file.pem"},
76 nag.boranna     1.20     {"sslTrustStore",       "/etc/opt/tog-pegasus/cimserver_trust"},
77 nag.boranna     1.21     {"crlStore",            "/etc/opt/tog-pegasus/crl"},
78 kumpf           1.30     {"repositoryDir",       PEGASUS_REPOSITORY_DIR},
79 kumpf           1.34 #  if defined(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER)
80                          {"providerDir",         "/opt/tog-pegasus/providers/lib:/usr/"
81                                                      PEGASUS_ARCH_LIB "/cmpi"},
82                      #  else
83 aruran.ms       1.28     {"providerDir",         "/opt/tog-pegasus/providers/lib"},
84 kumpf           1.34 #  endif
85 b.whiteley      1.38     {"providerManagerDir",  "/opt/tog-pegasus/providermanagers"},
86 kumpf           1.34     {"messageDir",          "/opt/tog-pegasus/share/locale/ICU_Messages"},
87                      # endif /* PEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS */
88 kumpf           1.36 #endif /* defined(PEGASUS_USE_RELEASE_DIRS) */
89 kumpf           1.34 #if !defined(PEGASUS_USE_RELEASE_CONFIG_OPTIONS) && \
90                          !defined(PEGASUS_USE_RELEASE_DIRS)
91 kumpf           1.37     {"bogus", "MyBogusValue"} /* Remove this line if others are added */
92 kumpf           1.1  #endif

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2