Sha256: ec0317cca81bc5ba0b3c7d6b2c37f2f547e4953c75b8ff8a0d13fcbe9d870cbb
Contents?: true
Size: 1.61 KB
Versions: 2
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-3071000" RUBY = "ruby-enterprise-1.8.7-2012.01" 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-3071000.tar.gz" URLS = [ REDIS_URL, SQLITE3_URL ] RUBYGEMS_VERSION = "1.8.15" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rhoconnect-3.1.1 | installer/unix-like/rho_connect_install_constants.rb |
rhoconnect-3.1.0 | installer/unix-like/rho_connect_install_constants.rb |