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

  1 karl  1.27 //%2006////////////////////////////////////////////////////////////////////////
  2 kumpf 1.1  //
  3 karl  1.18 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
  4            // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
  5            // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
  6 karl  1.8  // IBM Corp.; EMC Corporation, The Open Group.
  7 karl  1.18 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
  8            // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
  9 karl  1.19 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 10            // EMC Corporation; VERITAS Software Corporation; The Open Group.
 11 karl  1.27 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 12            // EMC Corporation; Symantec Corporation; The Open Group.
 13 kumpf 1.1  //
 14            // Permission is hereby granted, free of charge, to any person obtaining a copy
 15            // of this software and associated documentation files (the "Software"), to
 16            // deal in the Software without restriction, including without limitation the
 17            // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 18            // sell copies of the Software, and to permit persons to whom the Software is
 19            // furnished to do so, subject to the following conditions:
 20            // 
 21            // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 22            // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 23            // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 24            // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 25            // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 26            // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 27            // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 28            // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 29            //
 30            //==============================================================================
 31            //
 32            //%/////////////////////////////////////////////////////////////////////////////
 33            
 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                          {"httpPort",            "5988"},
 41                          {"httpsPort",           "5989"},
 42                          {"home",                ""},
 43                          {"install",             "false"},
 44                          {"remove",              "false"},
 45                          {"slp",                 "false"},
 46                          {"enableAuthentication", "true"},
 47                          {"httpAuthType",        "Basic"},
 48 denise.eckstein 1.17     {"enableBinaryRepository", "false"},
 49 kumpf           1.1  #endif
 50 konrad.r        1.14 #if defined(PEGASUS_USE_RELEASE_DIRS) && !defined(PEGASUS_OS_LSB)
 51 kumpf           1.34 # if defined(PEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS)
 52 denise.eckstein 1.26     {"traceFilePath",       PEGASUS_TRACE_FILE_PATH},
 53 kumpf           1.34 #  if !defined(PEGASUS_USE_SYSLOGS)
 54                          {"logdir",              PEGASUS_LOG_DIR},
 55                      #  endif
 56 denise.eckstein 1.26     {"passwordFilePath",     PEGASUS_CONFIG_DIR"/cimserver.passwd"},
 57                          {"sslCertificateFilePath", PEGASUS_SSL_CERT_FILE_PATH},
 58                          {"sslKeyFilePath",       PEGASUS_SSL_KEY_FILE_PATH},
 59                          {"sslTrustStore",        PEGASUS_SSL_SERVER_TRUSTSTORE},
 60 kumpf           1.34 #  ifdef PEGASUS_ENABLE_SSL_CRL_VERIFICATION
 61 denise.eckstein 1.26     {"crlStore",             PEGASUS_SSL_SERVER_CRL},
 62 kumpf           1.34 #  endif
 63 denise.eckstein 1.26     {"repositoryDir",        PEGASUS_REPOSITORY_DIR},
 64 kumpf           1.34     {"providerDir", PEGASUS_PROVIDER_LIB_DIR ":/usr/" PEGASUS_ARCH_LIB "/cmpi"},
 65                      # else /* PEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS */
 66 kumpf           1.25     {"traceFilePath",       "/var/opt/tog-pegasus/cache/trace/cimserver.trc"},
 67 kumpf           1.34 #  if !defined(PEGASUS_USE_SYSLOGS)
 68 denise.eckstein 1.16     {"logdir",              "/var/opt/tog-pegasus/log"},
 69 kumpf           1.34 #  endif
 70 denise.eckstein 1.16     {"passwordFilePath",    "/etc/opt/tog-pegasus/cimserver.passwd"},
 71                          {"sslCertificateFilePath", "/etc/opt/tog-pegasus/server.pem"},
 72                          {"sslKeyFilePath",      "/etc/opt/tog-pegasus/file.pem"},
 73 nag.boranna     1.20     {"sslTrustStore",       "/etc/opt/tog-pegasus/cimserver_trust"},
 74 nag.boranna     1.21     {"crlStore",            "/etc/opt/tog-pegasus/crl"},
 75 kumpf           1.30     {"repositoryDir",       PEGASUS_REPOSITORY_DIR},
 76 kumpf           1.34 #  if defined(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER)
 77                          {"providerDir",         "/opt/tog-pegasus/providers/lib:/usr/"
 78                                                      PEGASUS_ARCH_LIB "/cmpi"},
 79                      #  else
 80 aruran.ms       1.28     {"providerDir",         "/opt/tog-pegasus/providers/lib"},
 81 kumpf           1.34 #  endif
 82                          {"messageDir",          "/opt/tog-pegasus/share/locale/ICU_Messages"},
 83                      # endif /* PEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS */
 84 w.otsuka        1.31 #endif /*  defined(PEGASUS_USE_RELEASE_DIRS) && !defined(PEGASUS_OS_LSB) */
 85 konrad.r        1.15 #if defined(PEGASUS_USE_RELEASE_DIRS) && defined(PEGASUS_OS_LSB)
 86 konrad.r        1.14     {"traceFilePath",       "/var/opt/lsb-pegasus/cache/cimserver.trc"},
 87 kumpf           1.34 # if !defined(PEGASUS_USE_SYSLOGS)
 88 konrad.r        1.14     {"logdir",              "/var/opt/lsb-pegasus/log"},
 89 kumpf           1.34 # endif
 90 konrad.r        1.14     {"passwordFilePath",    "/etc/opt/lsb-pegasus/cimserver.passwd"},
 91                          {"sslCertificateFilePath", "/etc/opt/lsb-pegasus/server.pem"},
 92                          {"sslKeyFilePath",      "/etc/opt/lsb-pegasus/file.pem"},
 93 nag.boranna     1.20     {"sslTrustStore",       "/etc/opt/lsb-pegasus/cimserver_trust"},
 94 nag.boranna     1.21     {"crlStore",            "/etc/opt/lsb-pegasus/crl"},
 95 kumpf           1.30     {"repositoryDir",       PEGASUS_REPOSITORY_DIR},
 96 kumpf           1.34 # if defined(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER)
 97                          {"providerDir",         "/opt/lsb-pegasus/providers:/usr/"
 98                                                      PEGASUS_ARCH_LIB "/cmpi"},
 99                      # else
100 aruran.ms       1.28     {"providerDir",         "/opt/lsb-pegasus/providers"},
101 kumpf           1.34 # endif
102 aruran.ms       1.28 #endif
103 kumpf           1.34 #if !defined(PEGASUS_USE_RELEASE_CONFIG_OPTIONS) && \
104                          !defined(PEGASUS_USE_RELEASE_DIRS)
105 kumpf           1.1      {"bogus", "MyBogusValue"} // Remove this line if others are added
106                      #endif

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2