~ubuntu-branches/ubuntu/maverick/eucalyptus/maverick

« back to all changes in this revision

Viewing changes to clc/modules/bootstrap/eucalyptus-opts.h

  • Committer: Bazaar Package Importer
  • Author(s): Dave Walker (Daviey)
  • Date: 2010-07-21 17:27:10 UTC
  • mfrom: (1.1.38 upstream)
  • Revision ID: james.westby@ubuntu.com-20100721172710-7xv07dmdqgivc3t9
Tags: 2.0~bzr1211-0ubuntu1
* New major upstream version merge, 2.0 (r1211).
* debian/patches/:
  - 01-wsdl-stubs.patch, debian/wsdl.md5sums: wsdl stubs updated.
  - 02-Makefile.patch: Updated to reflect new code layout.
  - 07-local_support_euca_conf-in.patch: Updated to reflect new code layout.
  - 08-ubuntu-default-networking.patch: Refreshed.
  - 09-small-128-192MB.patch: Updated to point to new location.
  - 10-disable-iscsi.patch: Refreshed.
  - 11-state-cleanup-memleakfix.patch: Removed, fixed upstream.
  - 15-fix-default-ramdisk.patch: Updated to point to new location.
  - 16-kvm_libvirt_xml_default_use_kvm.patch: Updated to reflect changes.
  - 17-fix_walrus_OOM_errors.patch: Removed, fixed upstream.
  - 18-priv_security.patch: Updated to reflect upstream changes.
  - 20-brute-force-webui.patch: Updated to reflect upstream changes. 
  - 21-eucalyptus-1.7-with-gwt-1.6.4.patch: New patch, allows 
    eucalyptus-1.7 to be built against gwt 1.6.4. Based on patch courtesy 
    of Dmitrii Zagorodnov, upstream. (LP: #597330)
* debian/eucalyptus-java-common.links: 
  - Changed symlink for groovy, point to groovy.all.jar, making compatiable 
    with groovy versions >1.7. (LP: #595421)
  - Added ant.jar & jetty-rewrite-handler.jar as they are now required.
* debian/control
  - & debian/build-jars: Added libjavassist-java and libjetty-extra-java as 
    build dependencies.
  - Added libjetty-extra-java as a dependency of eucalyptus-java-common
* The binary resulting jar's have been renamed from eucalyptus-*-1.6.2.jar
  to eucalyptus-*-main.jar:    
  - debian/eucalyptus-cc.upstart
  - debian/eucalyptus-cloud.install
  - debian/eucalyptus-common.eucalyptus.upstart
  - debian/eucalyptus-java-common.install
  - debian/eucalyptus-network.upstart
  - debian/eucalyptus-sc.install
  - debian/eucalyptus-walrus.install
* debian/eucalyptus-java-common.install: New upstream jars that have been
  installed:
  - eucalyptus-db-hsqldb-ext-main.jar
  - eucalyptus-component-main.jar
* debian/control:
  - Updated Standards Version to 3.8.4 (no change)
  - Updated the upstream Homepage to: http://open.eucalyptus.com/
  - Changed Vcs-Bzr to reflect new location of Ubuntu hosted development branch.
  - Made the Build Dependency of groovy and the binary eucalyptus-java-common
    package depend on version >=1.7.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
  const char *exhaustive_user_help; /**< @brief Individually enable exhaustive connection information for client connections. help description.  */
71
71
  int exhaustive_cc_flag;       /**< @brief Individually enable exhaustive connection information for client connections. (default=off).  */
72
72
  const char *exhaustive_cc_help; /**< @brief Individually enable exhaustive connection information for client connections. help description.  */
 
73
  int exhaustive_external_flag; /**< @brief Individually enable exhaustive logging for external libraries. (default=off).  */
 
74
  const char *exhaustive_external_help; /**< @brief Individually enable exhaustive logging for external libraries. help description.  */
73
75
  char * log_appender_arg;      /**< @brief Control the destination for console output. (default='console-log').  */
74
76
  char * log_appender_orig;     /**< @brief Control the destination for console output. original value given at command line.  */
75
77
  const char *log_appender_help; /**< @brief Control the destination for console output. help description.  */
126
128
  const char *debug_suspend_help; /**< @brief Set the port to use for the debugger. help description.  */
127
129
  int profile_flag;     /**< @brief Launch with jprofiler enabled. (default=off).  */
128
130
  const char *profile_help; /**< @brief Launch with jprofiler enabled. help description.  */
129
 
  char * profiler_home_arg;     /**< @brief Set the home for jprofiler. (default='/opt/jprofiler5').  */
 
131
  char * agentlib_arg;  /**< @brief Launch with agentlib enabled..  */
 
132
  char * agentlib_orig; /**< @brief Launch with agentlib enabled. original value given at command line.  */
 
133
  const char *agentlib_help; /**< @brief Launch with agentlib enabled. help description.  */
 
134
  char * profiler_home_arg;     /**< @brief Set the home for jprofiler. (default='/opt/jprofiler6').  */
130
135
  char * profiler_home_orig;    /**< @brief Set the home for jprofiler. original value given at command line.  */
131
136
  const char *profiler_home_help; /**< @brief Set the home for jprofiler. help description.  */
132
137
  
144
149
  unsigned int exhaustive_db_given ;    /**< @brief Whether exhaustive-db was given.  */
145
150
  unsigned int exhaustive_user_given ;  /**< @brief Whether exhaustive-user was given.  */
146
151
  unsigned int exhaustive_cc_given ;    /**< @brief Whether exhaustive-cc was given.  */
 
152
  unsigned int exhaustive_external_given ;      /**< @brief Whether exhaustive-external was given.  */
147
153
  unsigned int log_appender_given ;     /**< @brief Whether log-appender was given.  */
148
154
  unsigned int out_given ;      /**< @brief Whether out was given.  */
149
155
  unsigned int err_given ;      /**< @brief Whether err was given.  */
167
173
  unsigned int debug_port_given ;       /**< @brief Whether debug-port was given.  */
168
174
  unsigned int debug_suspend_given ;    /**< @brief Whether debug-suspend was given.  */
169
175
  unsigned int profile_given ;  /**< @brief Whether profile was given.  */
 
176
  unsigned int agentlib_given ; /**< @brief Whether agentlib was given.  */
170
177
  unsigned int profiler_home_given ;    /**< @brief Whether profiler-home was given.  */
171
178
 
172
179
} ;