abiquo-etk 0.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +87 -0
- data/TODO +6 -0
- data/VERSION +1 -0
- data/abiquo-etk.gemspec +577 -0
- data/abiquo-etk.spec +125 -0
- data/bin/abicli +90 -0
- data/bin/abiquo-check-16-install +129 -0
- data/bin/aetk-setup-rs +36 -0
- data/bin/aetk-setup-server +77 -0
- data/bin/aetk-setup-v2v +33 -0
- data/lib/abicli/commands/remote-services-settings.rb +24 -0
- data/lib/abicli/commands/server-settings.rb +22 -0
- data/lib/abicli/commands/set.rb +133 -0
- data/lib/abicli/commands/smoketest.rb +93 -0
- data/lib/abicli/commands/upload-template.rb +272 -0
- data/lib/abicli/commands/version.rb +5 -0
- data/lib/abiquo-etk.rb +191 -0
- data/lib/checks/01detect_abiquo.rb +4 -0
- data/lib/checks/abiquo_service.rb +34 -0
- data/lib/checks/abiquo_version.rb +24 -0
- data/lib/checks/components_installed.rb +6 -0
- data/lib/checks/firewall.rb +10 -0
- data/lib/checks/hv_passwords.rb +51 -0
- data/lib/checks/install_type.rb +8 -0
- data/lib/checks/java.rb +19 -0
- data/lib/checks/mysql.rb +33 -0
- data/lib/checks/nfs.rb +18 -0
- data/lib/checks/os_version.rb +5 -0
- data/lib/checks/virtualbox.rb +11 -0
- data/scripts/setup_rs +44 -0
- data/scripts/setup_v2v +1 -0
- data/vendor/activesupport-2.3.8/CHANGELOG +1367 -0
- data/vendor/activesupport-2.3.8/README +43 -0
- data/vendor/activesupport-2.3.8/lib/active_support/all.rb +8 -0
- data/vendor/activesupport-2.3.8/lib/active_support/backtrace_cleaner.rb +72 -0
- data/vendor/activesupport-2.3.8/lib/active_support/base64.rb +33 -0
- data/vendor/activesupport-2.3.8/lib/active_support/basic_object.rb +24 -0
- data/vendor/activesupport-2.3.8/lib/active_support/buffered_logger.rb +127 -0
- data/vendor/activesupport-2.3.8/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/cache/drb_store.rb +14 -0
- data/vendor/activesupport-2.3.8/lib/active_support/cache/file_store.rb +72 -0
- data/vendor/activesupport-2.3.8/lib/active_support/cache/mem_cache_store.rb +143 -0
- data/vendor/activesupport-2.3.8/lib/active_support/cache/memory_store.rb +58 -0
- data/vendor/activesupport-2.3.8/lib/active_support/cache/strategy/local_cache.rb +104 -0
- data/vendor/activesupport-2.3.8/lib/active_support/cache/synchronized_memory_store.rb +47 -0
- data/vendor/activesupport-2.3.8/lib/active_support/cache.rb +248 -0
- data/vendor/activesupport-2.3.8/lib/active_support/callbacks.rb +279 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/array/access.rb +53 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/array/conversions.rb +197 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/array/extract_options.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/array/grouping.rb +106 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/array/random_access.rb +22 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/array/wrapper.rb +24 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/array.rb +15 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/base64/encoding.rb +16 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/base64.rb +4 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/benchmark.rb +19 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/bigdecimal.rb +6 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/blank.rb +2 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/cgi.rb +5 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/class/attribute_accessors.rb +61 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/class/removal.rb +50 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/date/behavior.rb +42 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/date/calculations.rb +241 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/date/conversions.rb +107 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/date.rb +10 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/date_time/calculations.rb +126 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/date_time/conversions.rb +107 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/date_time.rb +12 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/duplicable.rb +43 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/enumerable.rb +120 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/exception.rb +45 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/file/atomic.rb +47 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/file.rb +5 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/float/rounding.rb +24 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/float/time.rb +27 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/float.rb +7 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash/conversions.rb +247 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash/diff.rb +19 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash/except.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash/keys.rb +52 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash/slice.rb +40 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/hash.rb +14 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/integer/even_odd.rb +29 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/integer/inflections.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/integer/time.rb +45 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/integer.rb +9 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/kernel/debugger.rb +16 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/kernel/reporting.rb +59 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/kernel/requires.rb +24 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/kernel.rb +5 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/load_error.rb +38 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/logger.rb +145 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/aliasing.rb +74 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/attr_internal.rb +32 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/attribute_accessors.rb +67 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/delegation.rb +135 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/inclusion.rb +30 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/introspection.rb +90 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/loading.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/model_naming.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module/synchronization.rb +39 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/module.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/name_error.rb +19 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/numeric/bytes.rb +50 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/numeric/conversions.rb +19 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/numeric/time.rb +81 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/numeric.rb +9 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/object/blank.rb +76 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/object/conversions.rb +15 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/object/extending.rb +80 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/object/instance_variables.rb +74 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/object/metaclass.rb +14 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/object/misc.rb +90 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/object/singleton_class.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/object.rb +7 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/pathname.rb +7 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/proc.rb +12 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/process/daemon.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/process.rb +1 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/range/blockless_step.rb +32 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/range/conversions.rb +27 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/range/include_range.rb +30 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/range/overlaps.rb +15 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/range.rb +11 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/rexml.rb +41 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/access.rb +106 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/behavior.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/bytesize.rb +5 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/conversions.rb +28 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/filters.rb +26 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/inflections.rb +167 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/iterators.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/multibyte.rb +81 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/output_safety.rb +112 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/starts_ends_with.rb +33 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string/xchar.rb +11 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/string.rb +24 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/symbol.rb +14 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/time/behavior.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/time/calculations.rb +313 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/time/conversions.rb +90 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/time/zones.rb +86 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/time.rb +46 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/try.rb +36 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext/uri.rb +16 -0
- data/vendor/activesupport-2.3.8/lib/active_support/core_ext.rb +8 -0
- data/vendor/activesupport-2.3.8/lib/active_support/dependencies.rb +625 -0
- data/vendor/activesupport-2.3.8/lib/active_support/deprecation.rb +197 -0
- data/vendor/activesupport-2.3.8/lib/active_support/duration.rb +100 -0
- data/vendor/activesupport-2.3.8/lib/active_support/gzip.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/inflections.rb +56 -0
- data/vendor/activesupport-2.3.8/lib/active_support/inflector.rb +409 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/backends/jsongem.rb +37 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/backends/yajl.rb +40 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/backends/yaml.rb +87 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/decoding.rb +50 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/date.rb +22 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/date_time.rb +22 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/enumerable.rb +17 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/false_class.rb +7 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/hash.rb +56 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/nil_class.rb +7 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/numeric.rb +21 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/object.rb +10 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/regexp.rb +9 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/string.rb +9 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/symbol.rb +5 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/time.rb +22 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoders/true_class.rb +7 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/encoding.rb +111 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json/variable.rb +10 -0
- data/vendor/activesupport-2.3.8/lib/active_support/json.rb +2 -0
- data/vendor/activesupport-2.3.8/lib/active_support/locale/en.yml +33 -0
- data/vendor/activesupport-2.3.8/lib/active_support/memoizable.rb +100 -0
- data/vendor/activesupport-2.3.8/lib/active_support/message_encryptor.rb +70 -0
- data/vendor/activesupport-2.3.8/lib/active_support/message_verifier.rb +79 -0
- data/vendor/activesupport-2.3.8/lib/active_support/multibyte/chars.rb +707 -0
- data/vendor/activesupport-2.3.8/lib/active_support/multibyte/exceptions.rb +8 -0
- data/vendor/activesupport-2.3.8/lib/active_support/multibyte/unicode_database.rb +71 -0
- data/vendor/activesupport-2.3.8/lib/active_support/multibyte/utils.rb +60 -0
- data/vendor/activesupport-2.3.8/lib/active_support/multibyte.rb +57 -0
- data/vendor/activesupport-2.3.8/lib/active_support/option_merger.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/ordered_hash.rb +158 -0
- data/vendor/activesupport-2.3.8/lib/active_support/ordered_options.rb +19 -0
- data/vendor/activesupport-2.3.8/lib/active_support/rescuable.rb +108 -0
- data/vendor/activesupport-2.3.8/lib/active_support/secure_random.rb +199 -0
- data/vendor/activesupport-2.3.8/lib/active_support/string_inquirer.rb +21 -0
- data/vendor/activesupport-2.3.8/lib/active_support/test_case.rb +40 -0
- data/vendor/activesupport-2.3.8/lib/active_support/testing/assertions.rb +79 -0
- data/vendor/activesupport-2.3.8/lib/active_support/testing/declarative.rb +21 -0
- data/vendor/activesupport-2.3.8/lib/active_support/testing/default.rb +9 -0
- data/vendor/activesupport-2.3.8/lib/active_support/testing/deprecation.rb +57 -0
- data/vendor/activesupport-2.3.8/lib/active_support/testing/performance.rb +452 -0
- data/vendor/activesupport-2.3.8/lib/active_support/testing/setup_and_teardown.rb +91 -0
- data/vendor/activesupport-2.3.8/lib/active_support/time_with_zone.rb +335 -0
- data/vendor/activesupport-2.3.8/lib/active_support/values/time_zone.rb +412 -0
- data/vendor/activesupport-2.3.8/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/missing.rb +67 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/store_procs.rb +38 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/translation.rb +88 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record.rb +66 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/base.rb +266 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cache.rb +76 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cascade.rb +58 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/chain.rb +75 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cldr.rb +100 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/fallbacks.rb +69 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/fast.rb +69 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/gettext.rb +75 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/helpers.rb +68 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/interpolation_compiler.rb +119 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/links.rb +34 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/metadata.rb +73 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/pluralization.rb +57 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend/simple.rb +22 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/backend.rb +19 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/hash/except.rb +8 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/hash/slice.rb +8 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/object/meta_class.rb +5 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/string/interpolate.rb +99 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/exceptions.rb +61 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/gettext/po_parser.rb +329 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/gettext.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/helpers/gettext.rb +65 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/helpers.rb +5 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/locale/fallbacks.rb +98 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/parents.rb +24 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/rfc4646.rb +76 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/simple.rb +41 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag.rb +28 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/locale.rb +6 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n/version.rb +3 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/i18n-0.3.7/i18n.rb +335 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/memcache-client-1.7.4/memcache.rb +1107 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
- data/vendor/activesupport-2.3.8/lib/active_support/vendor.rb +36 -0
- data/vendor/activesupport-2.3.8/lib/active_support/version.rb +9 -0
- data/vendor/activesupport-2.3.8/lib/active_support/whiny_nil.rb +64 -0
- data/vendor/activesupport-2.3.8/lib/active_support/xml_mini/jdom.rb +162 -0
- data/vendor/activesupport-2.3.8/lib/active_support/xml_mini/libxml.rb +73 -0
- data/vendor/activesupport-2.3.8/lib/active_support/xml_mini/libxmlsax.rb +74 -0
- data/vendor/activesupport-2.3.8/lib/active_support/xml_mini/nokogiri.rb +72 -0
- data/vendor/activesupport-2.3.8/lib/active_support/xml_mini/nokogirisax.rb +73 -0
- data/vendor/activesupport-2.3.8/lib/active_support/xml_mini/rexml.rb +108 -0
- data/vendor/activesupport-2.3.8/lib/active_support/xml_mini.rb +31 -0
- data/vendor/activesupport-2.3.8/lib/active_support.rb +60 -0
- data/vendor/activesupport-2.3.8/lib/activesupport.rb +2 -0
- data/vendor/addressable-2.2.1/CHANGELOG +95 -0
- data/vendor/addressable-2.2.1/LICENSE +20 -0
- data/vendor/addressable-2.2.1/README +60 -0
- data/vendor/addressable-2.2.1/Rakefile +42 -0
- data/vendor/addressable-2.2.1/lib/addressable/idna.rb +4871 -0
- data/vendor/addressable-2.2.1/lib/addressable/template.rb +1049 -0
- data/vendor/addressable-2.2.1/lib/addressable/uri.rb +2250 -0
- data/vendor/addressable-2.2.1/lib/addressable/version.rb +36 -0
- data/vendor/addressable-2.2.1/spec/addressable/idna_spec.rb +194 -0
- data/vendor/addressable-2.2.1/spec/addressable/template_spec.rb +2152 -0
- data/vendor/addressable-2.2.1/spec/addressable/uri_spec.rb +4203 -0
- data/vendor/addressable-2.2.1/spec/data/rfc3986.txt +3419 -0
- data/vendor/addressable-2.2.1/tasks/clobber.rake +2 -0
- data/vendor/addressable-2.2.1/tasks/gem.rake +84 -0
- data/vendor/addressable-2.2.1/tasks/git.rake +40 -0
- data/vendor/addressable-2.2.1/tasks/metrics.rake +22 -0
- data/vendor/addressable-2.2.1/tasks/rdoc.rake +26 -0
- data/vendor/addressable-2.2.1/tasks/rubyforge.rake +89 -0
- data/vendor/addressable-2.2.1/tasks/spec.rake +47 -0
- data/vendor/addressable-2.2.1/tasks/yard.rake +26 -0
- data/vendor/addressable-2.2.1/website/index.html +110 -0
- data/vendor/api_ruby_client/Gemfile +10 -0
- data/vendor/api_ruby_client/LICENSE +20 -0
- data/vendor/api_ruby_client/README +39 -0
- data/vendor/api_ruby_client/Rakefile +89 -0
- data/vendor/api_ruby_client/abiquo.gemspec +43 -0
- data/vendor/api_ruby_client/examples/create_dc_and_hv.rb +38 -0
- data/vendor/api_ruby_client/examples/hypervisor_resource.rb +16 -0
- data/vendor/api_ruby_client/examples/rack_resource.rb +38 -0
- data/vendor/api_ruby_client/lib/abiquo.rb +201 -0
- data/vendor/api_ruby_client/lib/core_ext.rb +28 -0
- data/vendor/api_ruby_client/lib/to_xml.rb +22 -0
- data/vendor/api_ruby_client/spec/acceptance/create_resource_spec.rb +43 -0
- data/vendor/api_ruby_client/spec/acceptance/delete_resource_spec.rb +27 -0
- data/vendor/api_ruby_client/spec/acceptance/fetch_resource_collections_spec.rb +55 -0
- data/vendor/api_ruby_client/spec/acceptance/fetch_single_resources_spec.rb +47 -0
- data/vendor/api_ruby_client/spec/acceptance/from_xml_spec.rb +15 -0
- data/vendor/api_ruby_client/spec/acceptance/navigate_linked_resources_spec.rb +61 -0
- data/vendor/api_ruby_client/spec/acceptance/update_resource_spec.rb +26 -0
- data/vendor/api_ruby_client/spec/spec_helper.rb +32 -0
- data/vendor/api_ruby_client/spec/unit/to_xml_spec.rb +56 -0
- data/vendor/fattr-2.1.0/README +347 -0
- data/vendor/fattr-2.1.0/README.erb +82 -0
- data/vendor/fattr-2.1.0/Rakefile +242 -0
- data/vendor/fattr-2.1.0/a.rb +42 -0
- data/vendor/fattr-2.1.0/fattr.gemspec +29 -0
- data/vendor/fattr-2.1.0/lib/fattr.rb +193 -0
- data/vendor/fattr-2.1.0/samples/a.rb +21 -0
- data/vendor/fattr-2.1.0/samples/b.rb +22 -0
- data/vendor/fattr-2.1.0/samples/c.rb +12 -0
- data/vendor/fattr-2.1.0/samples/d.rb +34 -0
- data/vendor/fattr-2.1.0/samples/e.rb +17 -0
- data/vendor/fattr-2.1.0/samples/f.rb +21 -0
- data/vendor/fattr-2.1.0/samples/g.rb +15 -0
- data/vendor/fattr-2.1.0/samples/h.rb +29 -0
- data/vendor/fattr-2.1.0/test/fattr.rb +166 -0
- data/vendor/httpauth-0.1/LICENSE +16 -0
- data/vendor/httpauth-0.1/README +39 -0
- data/vendor/httpauth-0.1/Rakefile +76 -0
- data/vendor/httpauth-0.1/examples/client_digest_secure +132 -0
- data/vendor/httpauth-0.1/examples/server_digest_secure +47 -0
- data/vendor/httpauth-0.1/lib/httpauth/basic.rb +114 -0
- data/vendor/httpauth-0.1/lib/httpauth/constants.rb +14 -0
- data/vendor/httpauth-0.1/lib/httpauth/digest.rb +583 -0
- data/vendor/httpauth-0.1/lib/httpauth/exceptions.rb +6 -0
- data/vendor/httpauth-0.1/lib/httpauth.rb +4 -0
- data/vendor/options-2.3.0/README +186 -0
- data/vendor/options-2.3.0/README.erb +35 -0
- data/vendor/options-2.3.0/Rakefile +371 -0
- data/vendor/options-2.3.0/lib/options.rb +220 -0
- data/vendor/options-2.3.0/options.gemspec +26 -0
- data/vendor/options-2.3.0/samples/a.rb +15 -0
- data/vendor/options-2.3.0/samples/b.rb +50 -0
- data/vendor/options-2.3.0/samples/c.rb +20 -0
- data/vendor/options-2.3.0/samples/d.rb +17 -0
- data/vendor/options-2.3.0/spec/options_spec.rb +38 -0
- data/vendor/options-2.3.0/spec/spec_helper.rb +7 -0
- data/vendor/resourceful-1.0.1/History.txt +39 -0
- data/vendor/resourceful-1.0.1/MIT-LICENSE +21 -0
- data/vendor/resourceful-1.0.1/Manifest +43 -0
- data/vendor/resourceful-1.0.1/README.markdown +92 -0
- data/vendor/resourceful-1.0.1/Rakefile +91 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/abstract_form_data.rb +18 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/authentication_manager.rb +108 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/cache_manager.rb +242 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/exceptions.rb +34 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/header.rb +355 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/http_accessor.rb +103 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/memcache_cache_manager.rb +75 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/multipart_form_data.rb +46 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/net_http_adapter.rb +84 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/request.rb +235 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/resource.rb +179 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/response.rb +221 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/simple.rb +36 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/stubbed_resource_proxy.rb +47 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/urlencoded_form_data.rb +17 -0
- data/vendor/resourceful-1.0.1/lib/resourceful/util.rb +6 -0
- data/vendor/resourceful-1.0.1/lib/resourceful.rb +26 -0
- data/vendor/resourceful-1.0.1/resourceful.gemspec +51 -0
- data/vendor/resourceful-1.0.1/spec/acceptance/authorization_spec.rb +16 -0
- data/vendor/resourceful-1.0.1/spec/acceptance/caching_spec.rb +190 -0
- data/vendor/resourceful-1.0.1/spec/acceptance/header_spec.rb +24 -0
- data/vendor/resourceful-1.0.1/spec/acceptance/redirecting_spec.rb +12 -0
- data/vendor/resourceful-1.0.1/spec/acceptance/resource_spec.rb +84 -0
- data/vendor/resourceful-1.0.1/spec/acceptance/resourceful_spec.rb +56 -0
- data/vendor/resourceful-1.0.1/spec/acceptance_shared_specs.rb +44 -0
- data/vendor/resourceful-1.0.1/spec/caching_spec.rb +89 -0
- data/vendor/resourceful-1.0.1/spec/old_acceptance_specs.rb +378 -0
- data/vendor/resourceful-1.0.1/spec/resourceful/header_spec.rb +153 -0
- data/vendor/resourceful-1.0.1/spec/resourceful/http_accessor_spec.rb +56 -0
- data/vendor/resourceful-1.0.1/spec/resourceful/multipart_form_data_spec.rb +77 -0
- data/vendor/resourceful-1.0.1/spec/resourceful/resource_spec.rb +20 -0
- data/vendor/resourceful-1.0.1/spec/resourceful/response_spec.rb +51 -0
- data/vendor/resourceful-1.0.1/spec/resourceful/urlencoded_form_data_spec.rb +44 -0
- data/vendor/resourceful-1.0.1/spec/resourceful_spec.rb +79 -0
- data/vendor/resourceful-1.0.1/spec/simple_sinatra_server.rb +74 -0
- data/vendor/resourceful-1.0.1/spec/simple_sinatra_server_spec.rb +98 -0
- data/vendor/resourceful-1.0.1/spec/spec.opts +3 -0
- data/vendor/resourceful-1.0.1/spec/spec_helper.rb +31 -0
- metadata +645 -0
data/abiquo-etk.spec
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
%define ruby_sitelib %(ruby -rrbconfig -e "puts Config::CONFIG['sitelibdir']")
|
|
2
|
+
%define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
|
|
3
|
+
%define gemname abiquo-etk
|
|
4
|
+
%define geminstdir %{gemdir}/gems/%{gemname}-%{version}
|
|
5
|
+
|
|
6
|
+
Summary: Abiquo Elite Toolkit
|
|
7
|
+
Name: rubygem-%{gemname}
|
|
8
|
+
Version: 0.4.13
|
|
9
|
+
Release: 1%{?dist}
|
|
10
|
+
Group: Development/Languages
|
|
11
|
+
License: GPLv2+ or Ruby
|
|
12
|
+
URL: http://github.com/rubiojr/abiquo-etk
|
|
13
|
+
Source0: %{gemname}-%{version}.gem
|
|
14
|
+
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
15
|
+
Requires: rubygems
|
|
16
|
+
Requires: rubygem(nokogiri) >= 1.4
|
|
17
|
+
Requires: rubygem(term-ansicolor) >= 1.0
|
|
18
|
+
BuildRequires: rubygems
|
|
19
|
+
BuildArch: noarch
|
|
20
|
+
Provides: rubygem(%{gemname}) = %{version}
|
|
21
|
+
|
|
22
|
+
%description
|
|
23
|
+
Tools to troubleshoot your Abiquo installation
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
%prep
|
|
27
|
+
|
|
28
|
+
%build
|
|
29
|
+
|
|
30
|
+
%install
|
|
31
|
+
rm -rf %{buildroot}
|
|
32
|
+
mkdir -p %{buildroot}%{gemdir}
|
|
33
|
+
gem install --local --install-dir %{buildroot}%{gemdir} \
|
|
34
|
+
--force --rdoc %{SOURCE0}
|
|
35
|
+
mkdir -p %{buildroot}/%{_bindir}
|
|
36
|
+
mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir}
|
|
37
|
+
rmdir %{buildroot}%{gemdir}/bin
|
|
38
|
+
find %{buildroot}%{geminstdir}/bin -type f | xargs chmod a+x
|
|
39
|
+
|
|
40
|
+
%clean
|
|
41
|
+
rm -rf %{buildroot}
|
|
42
|
+
|
|
43
|
+
%files
|
|
44
|
+
%defattr(-, root, root, -)
|
|
45
|
+
%{_bindir}/abicli
|
|
46
|
+
%{_bindir}/aetk-setup-server
|
|
47
|
+
%{_bindir}/aetk-setup-rs
|
|
48
|
+
%{_bindir}/aetk-setup-v2v
|
|
49
|
+
%{_bindir}/abiquo-check-16-install
|
|
50
|
+
%{gemdir}/gems/%{gemname}-%{version}/
|
|
51
|
+
%doc %{gemdir}/doc/%{gemname}-%{version}
|
|
52
|
+
%doc %{geminstdir}/LICENSE
|
|
53
|
+
%doc %{geminstdir}/README.rdoc
|
|
54
|
+
%doc %{geminstdir}/TODO
|
|
55
|
+
%{gemdir}/cache/%{gemname}-%{version}.gem
|
|
56
|
+
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
%changelog
|
|
60
|
+
* Wed Oct 20 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.13-1
|
|
61
|
+
- Updated to upstream 0.4.13
|
|
62
|
+
|
|
63
|
+
* Wed Oct 20 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.12-1
|
|
64
|
+
- Updated to upstream 0.4.12
|
|
65
|
+
|
|
66
|
+
* Thu Oct 07 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.9-1
|
|
67
|
+
- Updated to upstream 0.4.9
|
|
68
|
+
|
|
69
|
+
* Thu Oct 07 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.8-1
|
|
70
|
+
- Updated to upstream 0.4.8
|
|
71
|
+
|
|
72
|
+
* Fri Oct 01 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.7-1
|
|
73
|
+
- Updated to upstream 0.4.7
|
|
74
|
+
|
|
75
|
+
* Fri Oct 01 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.6-1
|
|
76
|
+
- Updated to upstream 0.4.6
|
|
77
|
+
|
|
78
|
+
* Fri Oct 01 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.5-1
|
|
79
|
+
- Updated to upstream 0.4.5
|
|
80
|
+
|
|
81
|
+
* Tue Sep 28 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.3-1
|
|
82
|
+
- Updated to upstream 0.4.3
|
|
83
|
+
|
|
84
|
+
* Mon Sep 27 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.2-1
|
|
85
|
+
- Updated to upstream 0.4.2
|
|
86
|
+
|
|
87
|
+
* Mon Sep 27 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.1-1
|
|
88
|
+
- Updated to upstream 0.4.1
|
|
89
|
+
|
|
90
|
+
* Mon Sep 27 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4-1
|
|
91
|
+
- Updated to upstream 0.4
|
|
92
|
+
|
|
93
|
+
* Thu Sep 23 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.11-1
|
|
94
|
+
- Updated to upstream 0.3.11
|
|
95
|
+
|
|
96
|
+
* Thu Sep 23 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.10-1
|
|
97
|
+
- Updated to upstream 0.3.10
|
|
98
|
+
|
|
99
|
+
* Thu Sep 23 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.9-1
|
|
100
|
+
- Updated to upstream 0.3.9
|
|
101
|
+
|
|
102
|
+
* Wed Sep 22 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.8-1
|
|
103
|
+
- Updated to upstream 0.3.8
|
|
104
|
+
|
|
105
|
+
* Tue Sep 21 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.7-1
|
|
106
|
+
- Updated to upstream 0.3.7
|
|
107
|
+
|
|
108
|
+
* Thu Sep 16 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.6-1
|
|
109
|
+
- Updated to upstream 0.3.6
|
|
110
|
+
|
|
111
|
+
* Tue Sep 07 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.5-1
|
|
112
|
+
- Updated to upstream 0.3.5
|
|
113
|
+
|
|
114
|
+
* Tue Sep 07 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.4-1
|
|
115
|
+
- Updated to upstream 0.3.4
|
|
116
|
+
|
|
117
|
+
* Mon Sep 06 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.3-1
|
|
118
|
+
- Updated to upstream 0.3.3
|
|
119
|
+
|
|
120
|
+
* Mon Aug 30 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.2-1
|
|
121
|
+
- Updated to upstream 0.3.2
|
|
122
|
+
* Mon Aug 30 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3.1-1
|
|
123
|
+
- Updated to upstream 0.3.1
|
|
124
|
+
* Mon Aug 30 2010 : Sergio Rubio <srubio@abiquo.com> - 0.3-1
|
|
125
|
+
- Initial package
|
data/bin/abicli
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
begin
|
|
3
|
+
require 'lib/abiquo-etk'
|
|
4
|
+
rescue LoadError => e
|
|
5
|
+
require 'abiquo-etk'
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
class String
|
|
9
|
+
include Term::ANSIColor
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
include AETK::OutputFormatters
|
|
13
|
+
|
|
14
|
+
TOMCAT_SERVER_CONFIG='/opt/abiquo/tomcat/conf/Catalina/localhost/server.xml'
|
|
15
|
+
TOMCAT_SERVER_BUILTIN_CONFIG='/opt/abiquo/tomcat/webapps/server/META-INF/context.xml'
|
|
16
|
+
TOMCAT_API_CONFIG='/opt/abiquo/tomcat/conf/Catalina/localhost/api.xml'
|
|
17
|
+
TOMCAT_API_BUILTIN_CONFIG='/opt/abiquo/tomcat/webapps/api/META-INF/context.xml'
|
|
18
|
+
TOMCAT_BPMASYNC_CONFIG ='/opt/abiquo/tomcat/conf/Catalina/localhost/bpm-async.xml'
|
|
19
|
+
TOMCAT_BPMASYNC_BUILTIN_CONFIG = '/opt/abiquo/tomcat/webapps/bpm-async/META-INF/context.xml'
|
|
20
|
+
|
|
21
|
+
def config_set_node(file, path, val, write_changes = false)
|
|
22
|
+
doc = Nokogiri::XML(File.new(file))
|
|
23
|
+
doc.root.xpath(path).first.content = (val || '')
|
|
24
|
+
if write_changes
|
|
25
|
+
File.open(file, 'w') do |f|
|
|
26
|
+
f.puts doc.to_xml
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
return doc
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def config_get_node(cf, path)
|
|
33
|
+
cf.root.xpath(path).first.text rescue nil
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def config_set_attribute(file, path, attrname, val, write_changes = false)
|
|
37
|
+
doc = Nokogiri::XML(File.new(file))
|
|
38
|
+
doc.root.xpath(path).first[attrname] = (val||'')
|
|
39
|
+
if write_changes
|
|
40
|
+
File.open(file, 'w') do |f|
|
|
41
|
+
f.puts doc.to_xml
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
return doc
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def config_get_attribute(cf, path, attrname)
|
|
48
|
+
cf.root.xpath(path).first[attrname] rescue nil
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
def help
|
|
52
|
+
path = File.dirname(__FILE__) + '/../lib/abicli/commands/*.rb'
|
|
53
|
+
commands = Dir[path]
|
|
54
|
+
commands.map! { |cmd| File.basename(cmd,'.rb') }
|
|
55
|
+
puts "\n#{'ABICLI Usage'.bold}\n\n"
|
|
56
|
+
puts "Available commands:\n\n"
|
|
57
|
+
|
|
58
|
+
commands.sort.each { |cmd| puts " #{cmd}\n" }
|
|
59
|
+
puts ""
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
op = ARGV[0]
|
|
63
|
+
if op.nil?
|
|
64
|
+
help
|
|
65
|
+
exit
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
if op == 'setattr'
|
|
69
|
+
comp = ARGV[1]
|
|
70
|
+
path = ARGV[2]
|
|
71
|
+
attrname = ARGV[3]
|
|
72
|
+
val = ARGV[4]
|
|
73
|
+
file = File.join(ABIQUO_BASE_DIR, "config/#{comp}.xml")
|
|
74
|
+
if File.exist? comp
|
|
75
|
+
file = comp
|
|
76
|
+
end
|
|
77
|
+
config_set_attribute(file, path, attrname, val)
|
|
78
|
+
elsif op == 'help'
|
|
79
|
+
help
|
|
80
|
+
else
|
|
81
|
+
path = File.dirname(__FILE__) + '/../lib/abicli/commands/*.rb'
|
|
82
|
+
commands = Dir[path]
|
|
83
|
+
if not commands.include? File.dirname(__FILE__) + "/../lib/abicli/commands/#{op}.rb"
|
|
84
|
+
help
|
|
85
|
+
else
|
|
86
|
+
commands.each do |cmd|
|
|
87
|
+
load cmd
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
end
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
if `whoami`.strip.chomp != 'root'
|
|
4
|
+
puts 'You need to run this as root.'
|
|
5
|
+
exit
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
begin
|
|
9
|
+
require 'lib/abiquo-etk'
|
|
10
|
+
rescue LoadError
|
|
11
|
+
require 'abiquo-etk'
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
class String
|
|
15
|
+
include Term::ANSIColor
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def print_server_config
|
|
20
|
+
puts "SERVER CONFIG".bold
|
|
21
|
+
puts "-------------"
|
|
22
|
+
sc = abiquo_server_config
|
|
23
|
+
puts " Version: #{config_property(sc, 'abicloud/version')}"
|
|
24
|
+
puts " Event Sink Address: #{config_property(sc, 'eventSinkAddress')}"
|
|
25
|
+
puts " API Location: #{config_property sc, 'apiLocation'}"
|
|
26
|
+
puts " Repository Space: #{config_property(sc,'repositorySpace')}"
|
|
27
|
+
puts " Session Timeout: #{config_property(sc, 'sessionTimeout')}"
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def print_virtualfactory_config
|
|
31
|
+
puts "VIRTUAL FACTORY".bold
|
|
32
|
+
puts "---------------"
|
|
33
|
+
sc = abiquo_virtualfactory_config
|
|
34
|
+
two_cols(" Hyper-V LocalRepo:", "#{config_property(sc, 'hypervisors/hyperv/localRepositoryPath')}")
|
|
35
|
+
two_cols(" Hyper-V DestRepo:", "#{config_property(sc, 'hypervisors/hyperv/destinationRepositoryPath')}")
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def print_vsm_config
|
|
39
|
+
puts "VIRTUAL SYSTEM MONITOR".bold
|
|
40
|
+
puts "----------------------"
|
|
41
|
+
sc = abiquo_vsm_config
|
|
42
|
+
two_cols(" VMWARE User:", "#{config_property(sc, 'hypervisors/vmware/user')}")
|
|
43
|
+
two_cols(" VMWARE Password:", "#{config_property(sc, 'hypervisors/vmware/password')}")
|
|
44
|
+
two_cols(" Hyper-V User:", "#{config_property(sc, 'hypervisors/hyperv/user')}")
|
|
45
|
+
two_cols(" Hyper-V Password:", "#{config_property(sc, 'hypervisors/hyperv/password')}")
|
|
46
|
+
two_cols(" LibVirt User:", "#{config_property(sc, 'hypervisors/libvirtAgent/user')}")
|
|
47
|
+
two_cols(" LibVirt Password:", "#{config_property(sc, 'hypervisors/libvirtAgent/password')}")
|
|
48
|
+
two_cols(" LibVirt Port:", "#{config_property(sc, 'hypervisors/libvirtAgent/port')}")
|
|
49
|
+
two_cols(" XenServer User:", "#{config_property(sc, 'hypervisors/xenserver/user')}")
|
|
50
|
+
two_cols(" XenServer Password:", "#{config_property(sc, 'hypervisors/xenserver/password')}")
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def print_nodecollector_config
|
|
54
|
+
puts "NODE COLLECTOR".bold
|
|
55
|
+
puts "--------------"
|
|
56
|
+
sc = abiquo_nodecollector_config
|
|
57
|
+
two_cols(" VMWARE User:", "#{config_property(sc, 'hypervisors/esxi/user')}")
|
|
58
|
+
two_cols(" VMWARE Password:", "#{config_property(sc, 'hypervisors/esxi/password')}")
|
|
59
|
+
two_cols(" Hyper-V User:", "#{config_property(sc, 'hypervisors/hyperv/user')}")
|
|
60
|
+
two_cols(" Hyper-V Password:", "#{config_property(sc, 'hypervisors/hyperv/password')}")
|
|
61
|
+
two_cols(" LibVirt User:", "#{config_property(sc, 'wsman/user')}")
|
|
62
|
+
two_cols(" LibVirt Password:", "#{config_property(sc, 'wsman/password')}")
|
|
63
|
+
two_cols(" LibVirt Port:", "#{config_property(sc, 'wsman/port')}")
|
|
64
|
+
two_cols(" XenServer User:", "#{config_property(sc, 'hypervisors/xenserver/user')}")
|
|
65
|
+
two_cols(" XenServer Password:", "#{config_property(sc, 'hypervisors/xenserver/password')}")
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
class MyCLI
|
|
69
|
+
include Mixlib::CLI
|
|
70
|
+
|
|
71
|
+
option :debug,
|
|
72
|
+
:long => "--debug",
|
|
73
|
+
:description => "Set the log level to debug",
|
|
74
|
+
#:required => true,
|
|
75
|
+
:proc => Proc.new { |l| Log.level = Logger::DEBUG }
|
|
76
|
+
|
|
77
|
+
option :print_configs,
|
|
78
|
+
:long => "--print-configs",
|
|
79
|
+
:description => "Print Abiquo Configs"
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
option :extra_plugins,
|
|
83
|
+
:long => '--extra-plugins DIR',
|
|
84
|
+
:description => 'Extra plugins directory',
|
|
85
|
+
:default => nil
|
|
86
|
+
|
|
87
|
+
option :version,
|
|
88
|
+
:long => '--version',
|
|
89
|
+
:short => '-v',
|
|
90
|
+
:proc => Proc.new { puts "Abiquo Elite Toolkit Version " + File.read(File.dirname(__FILE__) + '/../VERSION') },
|
|
91
|
+
:exit => 0
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
option :help,
|
|
95
|
+
:short => "-h",
|
|
96
|
+
:long => "--help",
|
|
97
|
+
:description => "Show this message",
|
|
98
|
+
:on => :tail,
|
|
99
|
+
:boolean => true,
|
|
100
|
+
:show_options => true,
|
|
101
|
+
:exit => 0
|
|
102
|
+
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# ARGV = [ '-c', 'foo.rb', '-l', 'debug' ]
|
|
106
|
+
cli = MyCLI.new
|
|
107
|
+
cli.parse_options
|
|
108
|
+
|
|
109
|
+
AETK.load_plugins(cli.config[:extra_plugins])
|
|
110
|
+
include AETK::OutputFormatters
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
if cli.config[:print_configs]
|
|
114
|
+
# print config info
|
|
115
|
+
#
|
|
116
|
+
puts "\n"
|
|
117
|
+
if abiquo_components_installed.include? 'server'
|
|
118
|
+
print_server_config
|
|
119
|
+
end
|
|
120
|
+
puts "\n"
|
|
121
|
+
if abiquo_components_installed.include? 'virtualfactory'
|
|
122
|
+
print_virtualfactory_config
|
|
123
|
+
end
|
|
124
|
+
puts "\n"
|
|
125
|
+
if abiquo_components_installed.include? 'nodecollector'
|
|
126
|
+
print_nodecollector_config
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
|
data/bin/aetk-setup-rs
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'logger'
|
|
3
|
+
require 'abiquo-etk'
|
|
4
|
+
|
|
5
|
+
CONFIG_FILE='/etc/sysconfig/abiquo-rs'
|
|
6
|
+
|
|
7
|
+
Log = Logger.new "/var/log/abiquo-etk.log"
|
|
8
|
+
Log.level = Logger::INFO
|
|
9
|
+
|
|
10
|
+
begin
|
|
11
|
+
@settings = {}
|
|
12
|
+
if File.exist? CONFIG_FILE
|
|
13
|
+
@settings = abiquo_rs_settings
|
|
14
|
+
else
|
|
15
|
+
Log.error "Config file #{CONFIG_FILE} does not exist. Exit."
|
|
16
|
+
exit
|
|
17
|
+
end
|
|
18
|
+
repo = @settings['abiquo_nfs_repository']
|
|
19
|
+
if repo =~ /localhost|127.0.0.1/
|
|
20
|
+
if File.exist? '/etc/sysconfig/abiquo-server'
|
|
21
|
+
Log.info "NFS Repository points to localhost, fixing..."
|
|
22
|
+
s = abiquo_server_settings
|
|
23
|
+
repo = s['abiquo_server_ip'] + ':/opt/vm_repository'
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
Log.info "Setting nfs-repository to #{repo}"
|
|
27
|
+
`abicli set nfs-repository #{repo}`
|
|
28
|
+
Log.info "Setting cifs-repository to #{repo}"
|
|
29
|
+
`abicli set cifs-repository //your-cifs-server-ip-here/opt/vm_repository`
|
|
30
|
+
|
|
31
|
+
rescue Exception => e
|
|
32
|
+
Log.error "Unhandled exception: #{e.message}"
|
|
33
|
+
Log.error "Unhandled exception: #{e.backtrace}"
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'logger'
|
|
3
|
+
require 'abiquo-etk'
|
|
4
|
+
|
|
5
|
+
CONFIG_FILE='/etc/sysconfig/abiquo-server'
|
|
6
|
+
|
|
7
|
+
Log = Logger.new('/var/log/abiquo-etk.log')
|
|
8
|
+
Log.level = Logger::INFO
|
|
9
|
+
|
|
10
|
+
def create_schemas(user = 'root', password = '')
|
|
11
|
+
cmd = ''
|
|
12
|
+
if password.strip.chomp.empty?
|
|
13
|
+
cmd = "mysql -u #{user} "
|
|
14
|
+
else
|
|
15
|
+
cmd = "mysql -u #{user} -p#{password} "
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
if `#{cmd} -e 'show databases'|grep kinton`.strip.chomp.empty?
|
|
19
|
+
cib = false
|
|
20
|
+
if File.exist? '/etc/abiquo-release'
|
|
21
|
+
if File.readlines('/etc/abiquo-release').join =~ /cloud-in-a-box/
|
|
22
|
+
Log.info 'Cloud in a Box profile found'
|
|
23
|
+
cib = true
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
if cib
|
|
27
|
+
out = `mysql -u root < /usr/share/doc/abiquo-16-pocsetup/cloud-in-a-box.sql`
|
|
28
|
+
if $?.exitstatus == 0
|
|
29
|
+
Log.info 'cloud-in-a-box schema imported succesfully.'
|
|
30
|
+
else
|
|
31
|
+
Log.error "Error importing cloud-in-a-box schema: #{out}"
|
|
32
|
+
end
|
|
33
|
+
else
|
|
34
|
+
out = `mysql -u root < /usr/share/doc/abiquo-server/database/kinton-schema.sql`
|
|
35
|
+
if $?.exitstatus == 0
|
|
36
|
+
Log.info 'kinton-schema imported succesfully.'
|
|
37
|
+
else
|
|
38
|
+
Log.error "Error importing kinton-schema: #{out}"
|
|
39
|
+
end
|
|
40
|
+
out = `mysql -u root < /usr/share/doc/abiquo-server/database/kinton-premium-schema.sql`
|
|
41
|
+
if $?.exitstatus == 0
|
|
42
|
+
Log.info 'kinton-premium-schema imported succesfully.'
|
|
43
|
+
else
|
|
44
|
+
Log.error "Error importing kinton-premium-schema: #{out}"
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
else
|
|
48
|
+
Log.warn 'kinton schema found. Skipping schema creation.'
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
begin
|
|
54
|
+
if File.exist? CONFIG_FILE
|
|
55
|
+
@settings = abiquo_server_settings
|
|
56
|
+
else
|
|
57
|
+
Log.error "Config file #{CONFIG_FILE} does not exist. Exit."
|
|
58
|
+
exit
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
Log.info "Setting EventSink URL"
|
|
62
|
+
`abicli set event-sink-url http://#{@settings['abiquo_server_ip']}:8080/server/EventSink`
|
|
63
|
+
|
|
64
|
+
Log.info "Setting DB Properties"
|
|
65
|
+
`abicli set database-host #{@settings['abiquo_db_host']}`
|
|
66
|
+
`abicli set database-user root`
|
|
67
|
+
`abicli set database-password #{@settings['abiquo_db_password']}`
|
|
68
|
+
`abicli set mail-server 127.0.0.1`
|
|
69
|
+
|
|
70
|
+
Log.info "Creating database schemas..."
|
|
71
|
+
create_schemas
|
|
72
|
+
rescue Exception => e
|
|
73
|
+
Log.error "Unhandled exception: #{e.message}"
|
|
74
|
+
Log.error "Unhandled exception: #{e.backtrace}"
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
|
data/bin/aetk-setup-v2v
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'logger'
|
|
3
|
+
|
|
4
|
+
CONFIG_FILE='/etc/sysconfig/abiquo-server'
|
|
5
|
+
|
|
6
|
+
Log = Logger.new('/var/log/abiquo-etk.log')
|
|
7
|
+
Log.level = Logger::INFO
|
|
8
|
+
|
|
9
|
+
begin
|
|
10
|
+
@settings = {}
|
|
11
|
+
if File.exist? CONFIG_FILE
|
|
12
|
+
File.read(CONFIG_FILE).each_line do |l|
|
|
13
|
+
next if l.strip.chomp.empty?
|
|
14
|
+
key,val = l.strip.chomp.split('=')
|
|
15
|
+
@settings[key.strip.chomp] = val.strip.chomp rescue ''
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
else
|
|
19
|
+
Log.error "Config file #{CONFIG_FILE} does not exist. Exit."
|
|
20
|
+
exit
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
Log.info "Setting db user/password in localhost bpm-async context.xml"
|
|
24
|
+
`sed -i 's/localhost/0\.0\.0\.0/' /opt/abiquo/tomcat/webapps/bpm-async/WEB-INF/classes/activemq.xml`
|
|
25
|
+
`abicli set database-host #{@settings['abiquo_db_host']}`
|
|
26
|
+
`abicli set database-user root`
|
|
27
|
+
`abicli set database-password #{@settings['abiquo_db_password']}`
|
|
28
|
+
rescue Exception => e
|
|
29
|
+
Log.error "Unhandled exception: #{e.message}"
|
|
30
|
+
Log.error "Unhandled exception: #{e.backtrace}"
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
if ARGV[0] == 'remote-services-settings'
|
|
2
|
+
|
|
3
|
+
ARGV.shift
|
|
4
|
+
|
|
5
|
+
if not File.directory? ABIQUO_BASE_DIR
|
|
6
|
+
$stderr.puts "\n'abicli set' command is used to configure the Abiquo Platform.\nUnfortunately, I can't find the Abiquo Platform installed in this server.\n\nTry other commands.\n\n"
|
|
7
|
+
help
|
|
8
|
+
exit 1
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def print_remote_services_settings
|
|
12
|
+
f = ABIQUO_BASE_DIR + '/config/virtualfactory.xml'
|
|
13
|
+
doc = Nokogiri::XML(File.new(f))
|
|
14
|
+
puts
|
|
15
|
+
two_cols("NFS Repository:".bold, config_get_node(doc, 'hypervisors/xenserver/abiquoRepository'))
|
|
16
|
+
two_cols("CIFS Repository:".bold, config_get_node(doc, 'hypervisors/hyperv/destinationRepositoryPath'))
|
|
17
|
+
two_cols("Storage Link URL:".bold, config_get_node(doc, 'storagelink/address'))
|
|
18
|
+
two_cols("Storage Link User:".bold, config_get_node(doc, 'storagelink/user'))
|
|
19
|
+
two_cols("Storage Link Password:".bold, config_get_node(doc, 'storagelink/password'))
|
|
20
|
+
puts
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
print_remote_services_settings
|
|
24
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
if ARGV[0] == 'server-settings'
|
|
2
|
+
|
|
3
|
+
ARGV.shift
|
|
4
|
+
|
|
5
|
+
if not File.directory? ABIQUO_BASE_DIR
|
|
6
|
+
$stderr.puts "\n'abicli set' command is used to configure the Abiquo Platform.\nUnfortunately, I can't find the Abiquo Platform installed in this server.\n\nTry other commands.\n\n"
|
|
7
|
+
help
|
|
8
|
+
exit 1
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def print_server_settings
|
|
12
|
+
f = ABIQUO_BASE_DIR + '/config/server.xml'
|
|
13
|
+
doc = Nokogiri::XML(File.new(f))
|
|
14
|
+
puts
|
|
15
|
+
two_cols("Event Sink URL:".bold, config_get_node(doc, 'eventSinkAddress'))
|
|
16
|
+
two_cols("Session Timeout:".bold, config_get_node(doc, 'sessionTimeout'))
|
|
17
|
+
puts
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
print_server_settings
|
|
21
|
+
|
|
22
|
+
end
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
if ARGV[0] == 'set'
|
|
2
|
+
|
|
3
|
+
if not File.directory? ABIQUO_BASE_DIR
|
|
4
|
+
$stderr.puts "\n'abicli set' command is used to configure the Abiquo Platform.\nUnfortunately, I can't find the Abiquo Platform installed in this server.\n\nTry other commands.\n\n"
|
|
5
|
+
help
|
|
6
|
+
exit 1
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def set_database_host(val)
|
|
10
|
+
url = "jdbc:mysql://#{val}:3306/kinton?autoReconnect=true"
|
|
11
|
+
[TOMCAT_API_BUILTIN_CONFIG, TOMCAT_API_CONFIG].each do |f|
|
|
12
|
+
if File.exist?(f)
|
|
13
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoDB"]', 'url', url, true)
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
[TOMCAT_SERVER_CONFIG, TOMCAT_SERVER_BUILTIN_CONFIG].each do |f|
|
|
18
|
+
if File.exist?(f)
|
|
19
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoDB"]', 'url', url,true)
|
|
20
|
+
config_set_attribute(f, 'Resource[@name="jdbc/heartbeatDB"]', 'url', url, true)
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
[TOMCAT_BPMASYNC_CONFIG, TOMCAT_BPMASYNC_BUILTIN_CONFIG].each do |f|
|
|
24
|
+
if File.exist?(f)
|
|
25
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoBpmDB"]', 'url', url, true)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def set_database_user(val)
|
|
31
|
+
[TOMCAT_API_BUILTIN_CONFIG, TOMCAT_API_CONFIG].each do |f|
|
|
32
|
+
if File.exist?(f)
|
|
33
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoDB"]', 'username', val, true)
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
[TOMCAT_SERVER_CONFIG, TOMCAT_SERVER_BUILTIN_CONFIG].each do |f|
|
|
37
|
+
if File.exist?(f)
|
|
38
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoDB"]', 'username', val, true)
|
|
39
|
+
config_set_attribute(f, 'Resource[@name="jdbc/heartbeatDB"]', 'username', val, true)
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
[TOMCAT_BPMASYNC_CONFIG, TOMCAT_BPMASYNC_BUILTIN_CONFIG].each do |f|
|
|
43
|
+
if File.exist?(f)
|
|
44
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoBpmDB"]', 'username', val, true)
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def set_database_password(val)
|
|
50
|
+
[TOMCAT_API_BUILTIN_CONFIG, TOMCAT_API_CONFIG].each do |f|
|
|
51
|
+
if File.exist?(f)
|
|
52
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoDB"]', 'password', val, true)
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
[TOMCAT_SERVER_CONFIG, TOMCAT_SERVER_BUILTIN_CONFIG].each do |f|
|
|
56
|
+
if File.exist?(f)
|
|
57
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoDB"]', 'password', val, true)
|
|
58
|
+
config_set_attribute(f, 'Resource[@name="jdbc/heartbeatDB"]', 'password', val, true)
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
[TOMCAT_BPMASYNC_CONFIG, TOMCAT_BPMASYNC_BUILTIN_CONFIG].each do |f|
|
|
62
|
+
if File.exist?(f)
|
|
63
|
+
config_set_attribute(f, 'Resource[@name="jdbc/abiquoBpmDB"]', 'password', val, true)
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def set_nfs_repository(val)
|
|
69
|
+
f = ABIQUO_BASE_DIR + '/config/am.xml'
|
|
70
|
+
if File.exist? f
|
|
71
|
+
config_set_node(f, 'repository/location', val, true)
|
|
72
|
+
end
|
|
73
|
+
f = ABIQUO_BASE_DIR + '/config/virtualfactory.xml'
|
|
74
|
+
if File.exist? f
|
|
75
|
+
config_set_node(f, 'hypervisors/xenserver/abiquoRepository', val, true)
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
$command_mappings = {
|
|
80
|
+
'event-sink-url' => ['server', 'eventSinkAddress'],
|
|
81
|
+
'session-timeout' => ['server', 'sessionTimeout'],
|
|
82
|
+
'mail-server' => ['server', 'mail/server'],
|
|
83
|
+
'mail-server-user' => ['server', 'mail/user'],
|
|
84
|
+
'mail-server-password' => ['server', 'mail/password'],
|
|
85
|
+
'nfs-repository' => Proc.new { |val| set_nfs_repository(val) },
|
|
86
|
+
'cifs-repository' => ['virtualfactory', 'hypervisors/hyperv/destinationRepositoryPath'],
|
|
87
|
+
'storagelink-address' => ['virtualfactory', 'storagelink/address'],
|
|
88
|
+
'storagelink-user' => ['virtualfactory', 'storagelink/user'],
|
|
89
|
+
'storagelink-password' => ['virtualfactory', 'storagelink/password'],
|
|
90
|
+
'database-host' => Proc.new { |val| set_database_host(val) },
|
|
91
|
+
'database-user' => Proc.new { |val| set_database_user(val) },
|
|
92
|
+
'database-password' => Proc.new { |val| set_database_password(val) }
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
def mapping_exist?(key)
|
|
96
|
+
$command_mappings.has_key? key
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
def mapping_has_proc?(comp)
|
|
100
|
+
$command_mappings[comp].is_a? Proc
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
def help
|
|
104
|
+
puts "Available subcommands:"
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
comp = ARGV[1]
|
|
109
|
+
path = ARGV[2]
|
|
110
|
+
val = ARGV[3]
|
|
111
|
+
file = nil
|
|
112
|
+
begin
|
|
113
|
+
if mapping_exist? comp
|
|
114
|
+
val = path
|
|
115
|
+
if mapping_has_proc? comp
|
|
116
|
+
$command_mappings[comp].call(val)
|
|
117
|
+
exit
|
|
118
|
+
end
|
|
119
|
+
comp, path = $command_mappings[comp]
|
|
120
|
+
else
|
|
121
|
+
help
|
|
122
|
+
exit 0
|
|
123
|
+
end
|
|
124
|
+
file = File.join(ABIQUO_BASE_DIR, "config/#{comp}.xml")
|
|
125
|
+
config_set_node(file, path, val, true)
|
|
126
|
+
rescue NoMethodError => e
|
|
127
|
+
$stderr.puts e.message
|
|
128
|
+
$stderr.puts e.backtrace
|
|
129
|
+
$stderr.puts "\nproperty not found in component #{comp.bold}\n\n"
|
|
130
|
+
exit 1
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
end
|