Sha256: f29f44b29643232b2eaa448ee394bc964526d3381e861c4a113d7d0a3f34ff68
Contents?: true
Size: 1.61 KB
Versions: 1
Compression:
Stored size: 1.61 KB
Contents
module Constants PACKAGES = ["zlib1g-dev", "libcurl4-openssl-dev", "apache2-mpm-prefork", "apache2-prefork-dev", "libapr1-dev", "libaprutil1-dev", "dtach"] REDIS = "redis-2.4.6" SQLITE3 = "sqlite-autoconf-3070701" RUBY = "ruby-enterprise-1.8.7-2011.03" Nginx = "nginx-1.0.11" SOFTWARE = [ REDIS, SQLITE3, RUBY, Nginx ] REDIS_URL = "http://redis.googlecode.com/files/#{ REDIS }.tar.gz" SQLITE3_URL = "http://www.sqlite.org/sqlite-autoconf-3070701.tar.gz" URLS = [ REDIS_URL, SQLITE3_URL ] RUBYGEMS_VERSION = "1.8.11" GEMS = ["bundler", "passenger", "thor", "ffaker"] # thor and ffaker required by rhoconnect-benchmark utility SUPPORTED_PKG_MGRS = ["apt-get", "yum"] SUPPORTED_WEB_SERVERS = ["apache2", "nginx"] WEB_SERVER_URL = "http://localhost/" CHECKS = ["check_all_packages", "check_all_gems", "check_web_server_running"] DEFAULT_INSTALL_DIR = "/opt/rhoconnect" DEFAULTS = {"Packages" => PACKAGES, "Software" => SOFTWARE, "Gems" => GEMS, "Supported Package Managers" => SUPPORTED_PKG_MGRS, "Supported Web Servers" => SUPPORTED_WEB_SERVERS, "Default Install Directory" => DEFAULT_INSTALL_DIR} end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rhoconnect-3.1.0.beta2 | installer/unix-like/rho_connect_install_constants.rb |