passenger 5.0.4 → 5.0.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +10 -0
- data/CHANGELOG +21 -0
- data/build/agents.rb +2 -2
- data/build/apache2.rb +6 -5
- data/build/common_library.rb +22 -7
- data/build/cxx_tests.rb +0 -3
- data/build/misc.rb +1 -1
- data/dev/parse_file_descriptor_log +119 -0
- data/doc/CloudLicensingConfiguration.html +387 -0
- data/doc/Design and Architecture.html +2430 -0
- data/doc/Packaging.html +488 -0
- data/doc/Security of user switching support.html +1833 -0
- data/doc/ServerOptimizationGuide.html +659 -0
- data/doc/ServerOptimizationGuide.txt.md +8 -0
- data/doc/Users guide Apache.html +9116 -0
- data/doc/Users guide Apache.idmap.txt +6 -2
- data/doc/Users guide Apache.txt +26 -7
- data/doc/Users guide Nginx.html +9025 -0
- data/doc/Users guide Nginx.idmap.txt +7 -3
- data/doc/Users guide Nginx.txt +29 -6
- data/doc/Users guide Standalone.html +3983 -0
- data/doc/Users guide.html +1748 -0
- data/doc/users_guide_snippets/installation.txt +4 -4
- data/ext/apache2/Configuration.cpp +16 -5
- data/ext/apache2/Configuration.hpp +4 -2
- data/ext/apache2/Hooks.cpp +44 -19
- data/ext/boost/libs/thread/src/pthread/once.cpp +2 -0
- data/ext/boost/libs/thread/src/pthread/once_atomic.cpp +6 -0
- data/ext/common/AgentsStarter.h +3 -2
- data/ext/common/ApplicationPool2/DirectSpawner.h +14 -4
- data/ext/common/ApplicationPool2/DummySpawner.h +12 -7
- data/ext/common/ApplicationPool2/Implementation.cpp +1 -1
- data/ext/common/ApplicationPool2/Process.h +2 -1
- data/ext/common/ApplicationPool2/Session.h +6 -6
- data/ext/common/ApplicationPool2/SmartSpawner.h +19 -4
- data/ext/common/ApplicationPool2/Socket.h +59 -27
- data/ext/common/ApplicationPool2/Spawner.h +2 -2
- data/ext/common/BackgroundEventLoop.cpp +6 -1
- data/ext/common/Constants.h +1 -1
- data/ext/common/EventedClient.h +1 -1
- data/ext/common/EventedServer.h +2 -2
- data/ext/common/FileDescriptor.h +25 -6
- data/ext/common/Logging.cpp +107 -52
- data/ext/common/Logging.h +146 -19
- data/ext/common/MessageClient.h +2 -2
- data/ext/common/MessageServer.h +3 -2
- data/ext/common/RandomGenerator.h +8 -7
- data/ext/common/SafeLibev.h +5 -1
- data/ext/common/ServerKit/AcceptLoadBalancer.h +9 -4
- data/ext/common/ServerKit/FdSinkChannel.h +5 -2
- data/ext/common/ServerKit/FdSourceChannel.h +5 -2
- data/ext/common/ServerKit/FileBufferedChannel.h +2 -0
- data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +7 -2
- data/ext/common/ServerKit/HttpServer.h +6 -0
- data/ext/common/ServerKit/Server.h +40 -3
- data/ext/common/StaticString.h +20 -0
- data/ext/common/UnionStation/Connection.h +3 -1
- data/ext/common/UnionStation/Core.h +6 -4
- data/ext/common/Utils.cpp +4 -3
- data/ext/common/Utils/DateParsing.h +19 -5
- data/ext/common/Utils/FastStringStream.h +183 -0
- data/ext/common/Utils/IOUtils.cpp +47 -28
- data/ext/common/Utils/IOUtils.h +56 -12
- data/ext/common/Utils/MessagePassing.h +3 -3
- data/ext/common/Utils/ProcessMetricsCollector.h +2 -2
- data/ext/common/Utils/ScopeGuard.h +16 -5
- data/ext/common/Utils/SpeedMeter.h +2 -2
- data/ext/common/Utils/StrIntUtils.cpp +6 -6
- data/ext/common/Utils/StrIntUtils.h +2 -1
- data/ext/common/agents/Base.cpp +56 -4
- data/ext/common/agents/Base.h +2 -1
- data/ext/common/agents/HelperAgent/AdminServer.h +122 -11
- data/ext/common/agents/HelperAgent/Main.cpp +16 -5
- data/ext/common/agents/HelperAgent/OptionParser.h +7 -1
- data/ext/common/agents/HelperAgent/RequestHandler.h +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +10 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Request.h +8 -0
- data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +4 -3
- data/ext/common/agents/LoggingAgent/AdminServer.h +57 -11
- data/ext/common/agents/LoggingAgent/LoggingServer.h +3 -3
- data/ext/common/agents/LoggingAgent/Main.cpp +11 -3
- data/ext/common/agents/Watchdog/AdminServer.h +53 -11
- data/ext/common/agents/Watchdog/AgentWatcher.cpp +3 -3
- data/ext/common/agents/Watchdog/Main.cpp +13 -6
- data/ext/libeio/ecb.h +1 -1
- data/ext/libev/ev.c +13 -1
- data/ext/libev/ev.h +3 -0
- data/ext/nginx/Configuration.c +28 -6
- data/ext/nginx/Configuration.h +2 -1
- data/ext/nginx/ngx_http_passenger_module.c +5 -4
- data/ext/oxt/dynamic_thread_group.hpp +38 -5
- data/lib/phusion_passenger.rb +1 -1
- data/lib/phusion_passenger/common_library.rb +9 -5
- data/lib/phusion_passenger/config/reopen_logs_command.rb +2 -2
- data/lib/phusion_passenger/packaging.rb +23 -37
- data/passenger.gemspec +21 -21
- metadata +4 -453
- metadata.gz.asc +7 -7
- data/.gitignore +0 -68
- data/.travis.yml +0 -16
- data/Gemfile +0 -17
- data/Gemfile.lock +0 -39
- data/Vagrantfile +0 -54
- data/debian.template/README.Debian +0 -15
- data/debian.template/changelog +0 -316
- data/debian.template/compat +0 -1
- data/debian.template/control.erb +0 -91
- data/debian.template/copyright +0 -385
- data/debian.template/libapache2-mod-passenger.install +0 -3
- data/debian.template/libapache2-mod-passenger.postinst +0 -36
- data/debian.template/libapache2-mod-passenger.prerm +0 -15
- data/debian.template/locations.ini.erb +0 -14
- data/debian.template/passenger-dev.install.erb +0 -3
- data/debian.template/passenger-doc.install.erb +0 -2
- data/debian.template/passenger.conf +0 -6
- data/debian.template/passenger.docs +0 -4
- data/debian.template/passenger.install.erb +0 -14
- data/debian.template/passenger.load +0 -3
- data/debian.template/passenger.manpages +0 -3
- data/debian.template/patches/series +0 -0
- data/debian.template/rules.erb +0 -76
- data/debian.template/source/format +0 -1
- data/ext/common/EventedBufferedInput.h +0 -458
- data/packaging/rpm/LICENSE.txt +0 -19
- data/packaging/rpm/Makefile +0 -13
- data/packaging/rpm/README.md +0 -41
- data/packaging/rpm/Vagrantfile +0 -38
- data/packaging/rpm/Vagrantfile.centos +0 -30
- data/packaging/rpm/build +0 -170
- data/packaging/rpm/create_project +0 -41
- data/packaging/rpm/git_update +0 -88
- data/packaging/rpm/image/Dockerfile +0 -37
- data/packaging/rpm/image/Gemfile +0 -3
- data/packaging/rpm/image/Gemfile.lock +0 -12
- data/packaging/rpm/image/RPM-GPG-KEY-amazon-ga +0 -19
- data/packaging/rpm/image/amazon2014-i386.cfg +0 -96
- data/packaging/rpm/image/amazon2014-x86_64.cfg +0 -96
- data/packaging/rpm/image/site-defaults.cfg +0 -168
- data/packaging/rpm/internal/build_tasks.rb +0 -238
- data/packaging/rpm/internal/dummygpg +0 -11
- data/packaging/rpm/internal/exec_build +0 -42
- data/packaging/rpm/internal/get_distro_arch +0 -14
- data/packaging/rpm/internal/get_distro_id +0 -10
- data/packaging/rpm/internal/git_update +0 -27
- data/packaging/rpm/internal/inituidgid +0 -17
- data/packaging/rpm/internal/my_init +0 -344
- data/packaging/rpm/internal/python27 +0 -3
- data/packaging/rpm/internal/repo_update +0 -46
- data/packaging/rpm/internal/setuser +0 -26
- data/packaging/rpm/internal/tracking_helper +0 -40
- data/packaging/rpm/jenkins_release +0 -99
- data/packaging/rpm/lib/build_tasks_support.rb +0 -402
- data/packaging/rpm/lib/preprocessor.rb +0 -341
- data/packaging/rpm/nginx_spec/404.html +0 -119
- data/packaging/rpm/nginx_spec/50x.html +0 -119
- data/packaging/rpm/nginx_spec/index.html +0 -116
- data/packaging/rpm/nginx_spec/nginx-auto-cc-gcc.patch +0 -13
- data/packaging/rpm/nginx_spec/nginx-logo.png +0 -0
- data/packaging/rpm/nginx_spec/nginx-upgrade +0 -13
- data/packaging/rpm/nginx_spec/nginx-upgrade.8 +0 -151
- data/packaging/rpm/nginx_spec/nginx.conf +0 -131
- data/packaging/rpm/nginx_spec/nginx.init +0 -144
- data/packaging/rpm/nginx_spec/nginx.logrotate +0 -13
- data/packaging/rpm/nginx_spec/nginx.service +0 -15
- data/packaging/rpm/nginx_spec/nginx.spec.template +0 -560
- data/packaging/rpm/nginx_spec/nginx.sysconfig +0 -4
- data/packaging/rpm/nginx_spec/passenger.conf +0 -9
- data/packaging/rpm/nginx_spec/poweredby.png +0 -0
- data/packaging/rpm/passenger_spec/apache-passenger.conf.in +0 -26
- data/packaging/rpm/passenger_spec/config.json +0 -30
- data/packaging/rpm/passenger_spec/passenger.logrotate +0 -7
- data/packaging/rpm/passenger_spec/passenger.spec.template +0 -478
- data/packaging/rpm/passenger_spec/passenger_dynamic_thread_group.patch +0 -16
- data/packaging/rpm/passenger_spec/passenger_tests_default_config_example.patch +0 -44
- data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch +0 -21
- data/packaging/rpm/repo_update +0 -114
- data/packaging/rpm/setup-system +0 -61
- data/packaging/rpm/shell +0 -10
- data/test/.rspec +0 -4
- data/test/config.json.example +0 -42
- data/test/config.json.rpm-automation +0 -15
- data/test/config.json.travis +0 -15
- data/test/config.json.vagrant +0 -30
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +0 -124
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -30
- data/test/cxx/ApplicationPool2/PoolTest.cpp +0 -2062
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +0 -130
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +0 -243
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +0 -823
- data/test/cxx/BufferedIOTest.cpp +0 -364
- data/test/cxx/CachedFileStatTest.cpp +0 -402
- data/test/cxx/CxxTestMain.cpp +0 -181
- data/test/cxx/DataStructures/LStringTest.cpp +0 -275
- data/test/cxx/DataStructures/StringKeyTableTest.cpp +0 -199
- data/test/cxx/DateParsingTest.cpp +0 -75
- data/test/cxx/DechunkerTest.cpp +0 -250
- data/test/cxx/EventedBufferedInputTest.cpp +0 -758
- data/test/cxx/EventedClientTest.cpp +0 -523
- data/test/cxx/FileChangeCheckerTest.cpp +0 -331
- data/test/cxx/FileDescriptorTest.cpp +0 -69
- data/test/cxx/FilterSupportTest.cpp +0 -433
- data/test/cxx/IOUtilsTest.cpp +0 -861
- data/test/cxx/MemoryKit/MbufTest.cpp +0 -213
- data/test/cxx/MessageIOTest.cpp +0 -360
- data/test/cxx/MessagePassingTest.cpp +0 -81
- data/test/cxx/MessageReadersWritersTest.cpp +0 -576
- data/test/cxx/MessageServerTest.cpp +0 -393
- data/test/cxx/ProcessMetricsCollectorTest.cpp +0 -123
- data/test/cxx/RequestHandlerTest.cpp +0 -1463
- data/test/cxx/ResponseCacheTest.cpp +0 -322
- data/test/cxx/ServerKit/ChannelTest.cpp +0 -1467
- data/test/cxx/ServerKit/CookieUtilsTest.cpp +0 -274
- data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +0 -992
- data/test/cxx/ServerKit/HeaderTableTest.cpp +0 -177
- data/test/cxx/ServerKit/HttpServerTest.cpp +0 -1580
- data/test/cxx/ServerKit/ServerTest.cpp +0 -408
- data/test/cxx/StaticStringTest.cpp +0 -220
- data/test/cxx/StringMapTest.cpp +0 -131
- data/test/cxx/SystemTimeTest.cpp +0 -37
- data/test/cxx/TemplateTest.cpp +0 -118
- data/test/cxx/TestSupport.cpp +0 -207
- data/test/cxx/TestSupport.h +0 -333
- data/test/cxx/UnionStationTest.cpp +0 -741
- data/test/cxx/Utils/StrIntUtilsTest.cpp +0 -39
- data/test/cxx/UtilsTest.cpp +0 -672
- data/test/cxx/VariantMapTest.cpp +0 -191
- data/test/gdbinit.example +0 -34
- data/test/integration_tests/apache2_tests.rb +0 -585
- data/test/integration_tests/downloaded_binaries_tests.rb +0 -185
- data/test/integration_tests/native_packaging_spec.rb +0 -368
- data/test/integration_tests/nginx_tests.rb +0 -402
- data/test/integration_tests/shared/example_webapp_tests.rb +0 -289
- data/test/integration_tests/source_packaging_test.rb +0 -201
- data/test/integration_tests/spec_helper.rb +0 -22
- data/test/integration_tests/standalone_tests.rb +0 -392
- data/test/node/line_reader_spec.js +0 -338
- data/test/node/spec_helper.js +0 -65
- data/test/oxt/backtrace_test.cpp +0 -88
- data/test/oxt/counter.hpp +0 -55
- data/test/oxt/dynamic_thread_group_test.cpp +0 -131
- data/test/oxt/oxt_test_main.cpp +0 -27
- data/test/oxt/spin_lock_test.cpp +0 -59
- data/test/oxt/syscall_interruption_test.cpp +0 -39
- data/test/ruby/debug_logging_spec.rb +0 -145
- data/test/ruby/message_channel_spec.rb +0 -196
- data/test/ruby/rack/loader_spec.rb +0 -42
- data/test/ruby/rack/preloader_spec.rb +0 -48
- data/test/ruby/rails3.0/loader_spec.rb +0 -26
- data/test/ruby/rails3.0/preloader_spec.rb +0 -32
- data/test/ruby/rails3.1/loader_spec.rb +0 -26
- data/test/ruby/rails3.1/preloader_spec.rb +0 -32
- data/test/ruby/rails3.2/loader_spec.rb +0 -26
- data/test/ruby/rails3.2/preloader_spec.rb +0 -32
- data/test/ruby/rails4.0/loader_spec.rb +0 -28
- data/test/ruby/rails4.0/preloader_spec.rb +0 -34
- data/test/ruby/rails4.1/loader_spec.rb +0 -28
- data/test/ruby/rails4.1/preloader_spec.rb +0 -34
- data/test/ruby/request_handler_spec.rb +0 -747
- data/test/ruby/shared/loader_sharedspec.rb +0 -247
- data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +0 -357
- data/test/ruby/shared/ruby_loader_sharedspec.rb +0 -55
- data/test/ruby/spec_helper.rb +0 -114
- data/test/ruby/standalone/runtime_installer_spec.rb +0 -402
- data/test/ruby/union_station_spec.rb +0 -288
- data/test/ruby/utils/file_system_watcher_spec.rb +0 -229
- data/test/ruby/utils/hosts_file_parser.rb +0 -258
- data/test/ruby/utils/tee_input_spec.rb +0 -235
- data/test/ruby/utils/unseekable_socket_spec.rb +0 -66
- data/test/ruby/utils_spec.rb +0 -41
- data/test/stub/apache2/httpd.conf.erb +0 -122
- data/test/stub/apache2/mime.types +0 -748
- data/test/stub/garbage1.dat +0 -0
- data/test/stub/garbage2.dat +0 -0
- data/test/stub/garbage3.dat +0 -0
- data/test/stub/http_request.yml +0 -23
- data/test/stub/index.html +0 -1
- data/test/stub/nginx/koi-utf +0 -109
- data/test/stub/nginx/koi-win +0 -103
- data/test/stub/nginx/mime.types +0 -70
- data/test/stub/nginx/nginx.conf.erb +0 -70
- data/test/stub/nginx/win-utf +0 -126
- data/test/stub/node/app.js +0 -133
- data/test/stub/node/public/.gitignore +0 -0
- data/test/stub/node/tmp/.gitignore +0 -0
- data/test/stub/rack/config.ru +0 -95
- data/test/stub/rack/library.rb +0 -16
- data/test/stub/rack/public/.gitignore +0 -0
- data/test/stub/rack/start.rb +0 -52
- data/test/stub/rack/tmp/.gitignore +0 -0
- data/test/stub/rails3.0/.gitignore +0 -4
- data/test/stub/rails3.0/Gemfile +0 -22
- data/test/stub/rails3.0/Gemfile.lock +0 -80
- data/test/stub/rails3.0/Rakefile +0 -10
- data/test/stub/rails3.0/app/controllers/application_controller.rb +0 -4
- data/test/stub/rails3.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.0/config.ru +0 -4
- data/test/stub/rails3.0/config/application.rb +0 -48
- data/test/stub/rails3.0/config/boot.rb +0 -13
- data/test/stub/rails3.0/config/database.yml +0 -22
- data/test/stub/rails3.0/config/environment.rb +0 -5
- data/test/stub/rails3.0/config/environments/development.rb +0 -19
- data/test/stub/rails3.0/config/environments/production.rb +0 -48
- data/test/stub/rails3.0/config/environments/test.rb +0 -32
- data/test/stub/rails3.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.0/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.0/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.0/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.0/config/locales/en.yml +0 -5
- data/test/stub/rails3.0/config/routes.rb +0 -58
- data/test/stub/rails3.0/db/seeds.rb +0 -7
- data/test/stub/rails3.0/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.0/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.0/log/.gitignore +0 -0
- data/test/stub/rails3.0/public/404.html +0 -26
- data/test/stub/rails3.0/public/422.html +0 -26
- data/test/stub/rails3.0/public/500.html +0 -26
- data/test/stub/rails3.0/public/favicon.ico +0 -0
- data/test/stub/rails3.0/public/index.html +0 -279
- data/test/stub/rails3.0/public/robots.txt +0 -5
- data/test/stub/rails3.0/public/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.0/script/rails +0 -9
- data/test/stub/rails3.0/test/performance/browsing_test.rb +0 -9
- data/test/stub/rails3.0/test/test_helper.rb +0 -13
- data/test/stub/rails3.0/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.1/.gitignore +0 -15
- data/test/stub/rails3.1/Gemfile +0 -37
- data/test/stub/rails3.1/Gemfile.lock +0 -115
- data/test/stub/rails3.1/README +0 -261
- data/test/stub/rails3.1/Rakefile +0 -7
- data/test/stub/rails3.1/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.1/app/assets/stylesheets/application.css +0 -7
- data/test/stub/rails3.1/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.1/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.1/app/models/.gitkeep +0 -0
- data/test/stub/rails3.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.1/config.ru +0 -4
- data/test/stub/rails3.1/config/application.rb +0 -48
- data/test/stub/rails3.1/config/boot.rb +0 -6
- data/test/stub/rails3.1/config/database.yml +0 -25
- data/test/stub/rails3.1/config/environment.rb +0 -5
- data/test/stub/rails3.1/config/environments/development.rb +0 -30
- data/test/stub/rails3.1/config/environments/production.rb +0 -60
- data/test/stub/rails3.1/config/environments/test.rb +0 -39
- data/test/stub/rails3.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.1/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.1/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.1/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.1/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.1/config/locales/en.yml +0 -5
- data/test/stub/rails3.1/config/routes.rb +0 -58
- data/test/stub/rails3.1/db/seeds.rb +0 -7
- data/test/stub/rails3.1/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.1/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.1/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.1/log/.gitkeep +0 -0
- data/test/stub/rails3.1/public/404.html +0 -26
- data/test/stub/rails3.1/public/422.html +0 -26
- data/test/stub/rails3.1/public/500.html +0 -26
- data/test/stub/rails3.1/public/favicon.ico +0 -0
- data/test/stub/rails3.1/public/index.html +0 -241
- data/test/stub/rails3.1/public/robots.txt +0 -5
- data/test/stub/rails3.1/script/rails +0 -6
- data/test/stub/rails3.1/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.1/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.1/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.1/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.1/test/test_helper.rb +0 -13
- data/test/stub/rails3.1/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.2/.gitignore +0 -15
- data/test/stub/rails3.2/Gemfile +0 -39
- data/test/stub/rails3.2/Gemfile.lock +0 -113
- data/test/stub/rails3.2/Rakefile +0 -7
- data/test/stub/rails3.2/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.2/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails3.2/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.2/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.2/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.2/app/models/.gitkeep +0 -0
- data/test/stub/rails3.2/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.2/config.ru +0 -4
- data/test/stub/rails3.2/config/application.rb +0 -62
- data/test/stub/rails3.2/config/boot.rb +0 -6
- data/test/stub/rails3.2/config/database.yml +0 -25
- data/test/stub/rails3.2/config/environment.rb +0 -5
- data/test/stub/rails3.2/config/environments/development.rb +0 -37
- data/test/stub/rails3.2/config/environments/production.rb +0 -67
- data/test/stub/rails3.2/config/environments/test.rb +0 -37
- data/test/stub/rails3.2/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.2/config/initializers/inflections.rb +0 -15
- data/test/stub/rails3.2/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.2/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.2/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.2/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.2/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.2/config/locales/en.yml +0 -5
- data/test/stub/rails3.2/config/routes.rb +0 -58
- data/test/stub/rails3.2/db/seeds.rb +0 -7
- data/test/stub/rails3.2/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.2/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.2/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.2/log/.gitkeep +0 -0
- data/test/stub/rails3.2/public/404.html +0 -26
- data/test/stub/rails3.2/public/422.html +0 -26
- data/test/stub/rails3.2/public/500.html +0 -25
- data/test/stub/rails3.2/public/favicon.ico +0 -0
- data/test/stub/rails3.2/public/index.html +0 -241
- data/test/stub/rails3.2/public/robots.txt +0 -5
- data/test/stub/rails3.2/script/rails +0 -6
- data/test/stub/rails3.2/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.2/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.2/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.2/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.2/test/test_helper.rb +0 -13
- data/test/stub/rails3.2/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails4.0/.gitignore +0 -16
- data/test/stub/rails4.0/Gemfile +0 -45
- data/test/stub/rails4.0/Gemfile.lock +0 -126
- data/test/stub/rails4.0/README.rdoc +0 -28
- data/test/stub/rails4.0/Rakefile +0 -6
- data/test/stub/rails4.0/app/assets/images/.keep +0 -0
- data/test/stub/rails4.0/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.0/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.0/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.0/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.0/app/mailers/.keep +0 -0
- data/test/stub/rails4.0/app/models/.keep +0 -0
- data/test/stub/rails4.0/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.0/bin/bundle +0 -3
- data/test/stub/rails4.0/bin/rails +0 -4
- data/test/stub/rails4.0/bin/rake +0 -4
- data/test/stub/rails4.0/config.ru +0 -4
- data/test/stub/rails4.0/config/application.rb +0 -23
- data/test/stub/rails4.0/config/boot.rb +0 -4
- data/test/stub/rails4.0/config/database.yml +0 -25
- data/test/stub/rails4.0/config/environment.rb +0 -5
- data/test/stub/rails4.0/config/environments/development.rb +0 -29
- data/test/stub/rails4.0/config/environments/production.rb +0 -80
- data/test/stub/rails4.0/config/environments/test.rb +0 -36
- data/test/stub/rails4.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.0/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.0/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails4.0/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.0/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.0/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.0/config/locales/en.yml +0 -23
- data/test/stub/rails4.0/config/routes.rb +0 -57
- data/test/stub/rails4.0/db/seeds.rb +0 -7
- data/test/stub/rails4.0/lib/assets/.keep +0 -0
- data/test/stub/rails4.0/lib/tasks/.keep +0 -0
- data/test/stub/rails4.0/log/.keep +0 -0
- data/test/stub/rails4.0/public/404.html +0 -58
- data/test/stub/rails4.0/public/422.html +0 -58
- data/test/stub/rails4.0/public/500.html +0 -57
- data/test/stub/rails4.0/public/favicon.ico +0 -0
- data/test/stub/rails4.0/public/robots.txt +0 -5
- data/test/stub/rails4.0/test/controllers/.keep +0 -0
- data/test/stub/rails4.0/test/fixtures/.keep +0 -0
- data/test/stub/rails4.0/test/helpers/.keep +0 -0
- data/test/stub/rails4.0/test/integration/.keep +0 -0
- data/test/stub/rails4.0/test/mailers/.keep +0 -0
- data/test/stub/rails4.0/test/models/.keep +0 -0
- data/test/stub/rails4.0/test/test_helper.rb +0 -15
- data/test/stub/rails4.0/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.0/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/rails4.1/.gitignore +0 -16
- data/test/stub/rails4.1/Gemfile +0 -45
- data/test/stub/rails4.1/Gemfile.lock +0 -129
- data/test/stub/rails4.1/README.rdoc +0 -28
- data/test/stub/rails4.1/Rakefile +0 -6
- data/test/stub/rails4.1/app/assets/images/.keep +0 -0
- data/test/stub/rails4.1/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.1/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.1/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.1/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.1/app/mailers/.keep +0 -0
- data/test/stub/rails4.1/app/models/.keep +0 -0
- data/test/stub/rails4.1/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.1/bin/bundle +0 -3
- data/test/stub/rails4.1/bin/rails +0 -4
- data/test/stub/rails4.1/bin/rake +0 -4
- data/test/stub/rails4.1/config.ru +0 -4
- data/test/stub/rails4.1/config/application.rb +0 -23
- data/test/stub/rails4.1/config/boot.rb +0 -4
- data/test/stub/rails4.1/config/database.yml +0 -25
- data/test/stub/rails4.1/config/environment.rb +0 -5
- data/test/stub/rails4.1/config/environments/development.rb +0 -29
- data/test/stub/rails4.1/config/environments/production.rb +0 -80
- data/test/stub/rails4.1/config/environments/test.rb +0 -36
- data/test/stub/rails4.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.1/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.1/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.1/config/initializers/passenger.rb +0 -5
- data/test/stub/rails4.1/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.1/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.1/config/locales/en.yml +0 -23
- data/test/stub/rails4.1/config/routes.rb +0 -57
- data/test/stub/rails4.1/db/seeds.rb +0 -7
- data/test/stub/rails4.1/lib/assets/.keep +0 -0
- data/test/stub/rails4.1/lib/tasks/.keep +0 -0
- data/test/stub/rails4.1/log/.keep +0 -0
- data/test/stub/rails4.1/public/404.html +0 -58
- data/test/stub/rails4.1/public/422.html +0 -58
- data/test/stub/rails4.1/public/500.html +0 -57
- data/test/stub/rails4.1/public/favicon.ico +0 -0
- data/test/stub/rails4.1/public/robots.txt +0 -5
- data/test/stub/rails4.1/test/controllers/.keep +0 -0
- data/test/stub/rails4.1/test/fixtures/.keep +0 -0
- data/test/stub/rails4.1/test/helpers/.keep +0 -0
- data/test/stub/rails4.1/test/integration/.keep +0 -0
- data/test/stub/rails4.1/test/mailers/.keep +0 -0
- data/test/stub/rails4.1/test/models/.keep +0 -0
- data/test/stub/rails4.1/test/test_helper.rb +0 -15
- data/test/stub/rails4.1/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.1/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/start_error.pl +0 -24
- data/test/stub/upload_data.txt +0 -494
- data/test/stub/wsgi/passenger_wsgi.py +0 -212
- data/test/stub/wsgi/public/.gitignore +0 -0
- data/test/stub/wsgi/tmp/.gitignore +0 -0
- data/test/support/allocate_memory.c +0 -14
- data/test/support/apache2_controller.rb +0 -258
- data/test/support/multipart.rb +0 -62
- data/test/support/nginx_controller.rb +0 -97
- data/test/support/placebo-preloader.rb +0 -88
- data/test/support/test_helper.rb +0 -455
- data/test/support/valgrind.h +0 -2539
- data/test/tut/tut.h +0 -1310
- data/test/tut/tut_reporter.h +0 -256
- data/test/valgrind-osx.supp +0 -7
data/packaging/rpm/LICENSE.txt
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
Copyright (c) 2014 Phusion
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
-
of this software and associated documentation files (the "Software"), to deal
|
5
|
-
in the Software without restriction, including without limitation the rights
|
6
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
-
copies of the Software, and to permit persons to whom the Software is
|
8
|
-
furnished to do so, subject to the following conditions:
|
9
|
-
|
10
|
-
The above copyright notice and this permission notice shall be included in
|
11
|
-
all copies or substantial portions of the Software.
|
12
|
-
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
-
THE SOFTWARE.
|
data/packaging/rpm/Makefile
DELETED
data/packaging/rpm/README.md
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
# Phusion Passenger RPM packaging automation
|
2
|
-
|
3
|
-
This repository contains tools for automating the building of RPM packages for Phusion Passenger. These tools require Ubuntu 12.04 x86_64, Docker and Jenkins. The main build environment is a CentOS 6 Docker container.
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
First, install Docker: http://www.docker.io/
|
8
|
-
|
9
|
-
Then install `passenger_rpm_automation`:
|
10
|
-
|
11
|
-
git clone https://github.com/phusion/passenger_rpm_automation.git /tmp/passenger_rpm_automation
|
12
|
-
/tmp/passenger_rpm_automation/setup-system
|
13
|
-
sudo mv /tmp/passenger_rpm_automation /srv/passenger_rpm_automation
|
14
|
-
sudo chown -R psg_rpm_automation: /srv/passenger_rpm_automation
|
15
|
-
|
16
|
-
Next, create a project for Phusion Passenger:
|
17
|
-
|
18
|
-
cd /srv/passenger_rpm_automation
|
19
|
-
sudo ./create_project passenger https://github.com/phusion/passenger.git
|
20
|
-
|
21
|
-
## Usage
|
22
|
-
|
23
|
-
`passenger_rpm_automation` usage commands are supposed to be run as the `psg_rpm_automation` user, and from the `/srv/passenger_rpm_automation` directory.
|
24
|
-
|
25
|
-
### Logging into the build environment
|
26
|
-
|
27
|
-
Run this to login to the build environment container. This allows you to inspect things. Any changes you make will not be saved.
|
28
|
-
|
29
|
-
./shell
|
30
|
-
|
31
|
-
Any arguments you pass are passed to `docker run`.
|
32
|
-
|
33
|
-
### Building RPMs
|
34
|
-
|
35
|
-
To build RPMs for all supported distributions and all supported architectures, run:
|
36
|
-
|
37
|
-
./build -p PROJECT_DIR
|
38
|
-
|
39
|
-
The RPMs will be saved to `PROJECT_DIR/build`.
|
40
|
-
|
41
|
-
You can also build RPMs for just a single distribution/architecture. Use the `-d` and `-a` parameters to do that. Pass `-h` for help.
|
data/packaging/rpm/Vagrantfile
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
# -*- mode: ruby -*-
|
2
|
-
# vi: set ft=ruby :
|
3
|
-
ROOT = File.dirname(File.expand_path(__FILE__))
|
4
|
-
|
5
|
-
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
6
|
-
VAGRANTFILE_API_VERSION = "2"
|
7
|
-
|
8
|
-
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
9
|
-
config.vm.box = "phusion-open-ubuntu-12.04-amd64"
|
10
|
-
config.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/ubuntu-12.04.3-amd64-vbox.box"
|
11
|
-
config.ssh.forward_agent = true
|
12
|
-
|
13
|
-
passenger_path = File.absolute_path('../passenger', ROOT)
|
14
|
-
if File.directory?(passenger_path)
|
15
|
-
config.vm.synced_folder passenger_path, '/passenger'
|
16
|
-
end
|
17
|
-
|
18
|
-
passenger_enterprise_path = File.absolute_path('../commercial_passenger', ROOT)
|
19
|
-
if File.directory?(passenger_enterprise_path)
|
20
|
-
config.vm.synced_folder passenger_enterprise_path, '/passenger-enterprise'
|
21
|
-
end
|
22
|
-
|
23
|
-
config.vm.provider :vmware_fusion do |f, override|
|
24
|
-
override.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/ubuntu-12.04.3-amd64-vmwarefusion.box"
|
25
|
-
f.vmx["displayName"] = "passenger_rpm_automation"
|
26
|
-
end
|
27
|
-
|
28
|
-
# Add lxc-docker package
|
29
|
-
pkg_cmd = "if [[ -e /usr/bin/docker ]]; then exit; fi; " \
|
30
|
-
"wget -q -O - https://get.docker.io/gpg | apt-key add -;" \
|
31
|
-
"echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list;" \
|
32
|
-
"apt-get update -qq; apt-get install -q -y --force-yes lxc-docker git; "
|
33
|
-
# Add vagrant user to the docker group
|
34
|
-
pkg_cmd << "usermod -a -G docker vagrant; "
|
35
|
-
pkg_cmd << "/vagrant/setup-system; "
|
36
|
-
pkg_cmd << "git clone https://github.com/phusion/phusion-server-tools.git /tools"
|
37
|
-
config.vm.provision :shell, :inline => pkg_cmd
|
38
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
# This Vagrantfile sets up a CentOS VM, for the purpose of RPM development.
|
2
|
-
|
3
|
-
ROOT = File.expand_path(File.dirname(__FILE__) + "/..")
|
4
|
-
|
5
|
-
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
6
|
-
VAGRANTFILE_API_VERSION = "2"
|
7
|
-
|
8
|
-
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
9
|
-
config.vm.box = "centos-6.4-x86_64"
|
10
|
-
config.vm.box_url = "http://developer.nrel.gov/downloads/vagrant-boxes/CentOS-6.4-x86_64-v20130731.box"
|
11
|
-
config.vm.synced_folder ROOT, "/vagrant"
|
12
|
-
config.ssh.forward_agent = true
|
13
|
-
|
14
|
-
config.vm.provider :vmware_fusion do |f, override|
|
15
|
-
override.vm.box_url = "https://dl.dropbox.com/u/5721940/vagrant-boxes/vagrant-centos-6.4-x86_64-vmware_fusion.box"
|
16
|
-
end
|
17
|
-
|
18
|
-
pkg_cmd = %Q{
|
19
|
-
echo "exclude = kernel*" >> /etc/yum.conf
|
20
|
-
rpm -Uvh http://mirror.overthewire.com.au/pub/epel/6/i386/epel-release-6-8.noarch.rpm &&
|
21
|
-
yum update -y &&
|
22
|
-
yum install -y @development-tools fedora-packager git sudo nano &&
|
23
|
-
yum install -y gcc gcc-c++ ccache curl-devel openssl-devel zlib-devel &&
|
24
|
-
yum install -y ruby ruby-devel rubygems rubygem-rake httpd httpd-devel apr-devel apr-util-devel &&
|
25
|
-
usermod -a -G mock vagrant &&
|
26
|
-
sed -i 's/Defaults requiretty//' /etc/sudoers &&
|
27
|
-
sudo -u vagrant -H rpmdev-setuptree
|
28
|
-
}
|
29
|
-
config.vm.provision :shell, :inline => pkg_cmd
|
30
|
-
end
|
data/packaging/rpm/build
DELETED
@@ -1,170 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
|
4
|
-
SELFROOT=`dirname "$0"`
|
5
|
-
SELFROOT=`cd "$SELFROOT" && pwd`
|
6
|
-
SELFROOT_ON_DOCKER_HOST="$SELFROOT"
|
7
|
-
TEMPDIR=
|
8
|
-
|
9
|
-
PASSENGER_DIR=
|
10
|
-
OUTPUT_DIR=
|
11
|
-
DISTROS='el6'
|
12
|
-
ARCHS='i386,x86_64'
|
13
|
-
LOCAL_BUILD=false
|
14
|
-
CONCURRENCY=1
|
15
|
-
TASK=rpm:all
|
16
|
-
CLEAN=false
|
17
|
-
CACHE_DIR=
|
18
|
-
VERBOSE=false
|
19
|
-
|
20
|
-
function usage()
|
21
|
-
{
|
22
|
-
echo "Usage: ./build [OPTIONS]"
|
23
|
-
echo "Build RPMs for multiple distributions and architectures."
|
24
|
-
echo
|
25
|
-
echo "Required options:"
|
26
|
-
echo " -p PATH Path to a project"
|
27
|
-
echo
|
28
|
-
echo " -P PATH Path to Phusion Passenger source directory"
|
29
|
-
echo " -o PATH Directory to save build output to"
|
30
|
-
echo " -c PATH Directory to store cache files to"
|
31
|
-
echo
|
32
|
-
echo "Optional options:"
|
33
|
-
echo " -d DISTROS Distributions to build for (default: $DISTROS)"
|
34
|
-
echo " -a ARCHS Architectures to build for (default: $ARCHS)"
|
35
|
-
echo " -L Build for local distribution and architecture"
|
36
|
-
echo " -j CONCURRENCY Build concurrency (default: $CONCURRENCY)"
|
37
|
-
echo
|
38
|
-
echo " -t TASK Build using specific Rake task (default: $TASK)"
|
39
|
-
echo " -T List all Rake tasks (note: list depends on other options)"
|
40
|
-
echo
|
41
|
-
echo " -l Clean output directory before building RPMs"
|
42
|
-
echo " -k VERSION Pretend as if the Passenger version number is the specified one"
|
43
|
-
echo " -S Directory to passenger_rpm_automation on the Docker host"
|
44
|
-
echo " -V Verbose output"
|
45
|
-
}
|
46
|
-
|
47
|
-
function parse_options()
|
48
|
-
{
|
49
|
-
local OPTIND=1
|
50
|
-
local opt
|
51
|
-
while getopts "p:P:o:d:a:Lj:t:Tlk:c:S:Vh" opt; do
|
52
|
-
case "$opt" in
|
53
|
-
p)
|
54
|
-
PASSENGER_DIR="$OPTARG/git"
|
55
|
-
CACHE_DIR="$OPTARG/cache"
|
56
|
-
OUTPUT_DIR="$OPTARG/build"
|
57
|
-
;;
|
58
|
-
P)
|
59
|
-
PASSENGER_DIR="$OPTARG"
|
60
|
-
;;
|
61
|
-
o)
|
62
|
-
OUTPUT_DIR="$OPTARG"
|
63
|
-
;;
|
64
|
-
d)
|
65
|
-
DISTROS="$OPTARG"
|
66
|
-
;;
|
67
|
-
a)
|
68
|
-
ARCHS="$OPTARG"
|
69
|
-
;;
|
70
|
-
L)
|
71
|
-
LOCAL_BUILD=true
|
72
|
-
;;
|
73
|
-
j)
|
74
|
-
CONCURRENCY="$OPTARG"
|
75
|
-
;;
|
76
|
-
t)
|
77
|
-
TASK="$OPTARG"
|
78
|
-
;;
|
79
|
-
T)
|
80
|
-
TASK="-T"
|
81
|
-
;;
|
82
|
-
l)
|
83
|
-
CLEAN=true
|
84
|
-
;;
|
85
|
-
k)
|
86
|
-
FORCE_PASSENGER_VERSION="$OPTARG"
|
87
|
-
;;
|
88
|
-
c)
|
89
|
-
CACHE_DIR="$OPTARG"
|
90
|
-
;;
|
91
|
-
S)
|
92
|
-
SELFROOT_ON_DOCKER_HOST="$OPTARG"
|
93
|
-
;;
|
94
|
-
V)
|
95
|
-
VERBOSE=true
|
96
|
-
;;
|
97
|
-
h)
|
98
|
-
usage
|
99
|
-
exit
|
100
|
-
;;
|
101
|
-
*)
|
102
|
-
return 1
|
103
|
-
;;
|
104
|
-
esac
|
105
|
-
done
|
106
|
-
|
107
|
-
if [[ "$PASSENGER_DIR" = "" ]]; then
|
108
|
-
echo "Please specify a project using -p, or a path to the Phusion Passenger source directory using -P."
|
109
|
-
exit 1
|
110
|
-
fi
|
111
|
-
if [[ "$TASK" != "-T" ]]; then
|
112
|
-
if [[ "$OUTPUT_DIR" = "" ]]; then
|
113
|
-
echo "Please specify a project using -p, or an output directory using -o."
|
114
|
-
exit 1
|
115
|
-
fi
|
116
|
-
if [[ "$CACHE_DIR" = "" ]]; then
|
117
|
-
echo "Please specify a project using -p, or a cache directory using -c."
|
118
|
-
exit 1
|
119
|
-
fi
|
120
|
-
fi
|
121
|
-
}
|
122
|
-
|
123
|
-
function verbose_run()
|
124
|
-
{
|
125
|
-
if $VERBOSE; then
|
126
|
-
echo "$ $@"
|
127
|
-
fi
|
128
|
-
"$@"
|
129
|
-
}
|
130
|
-
|
131
|
-
function cleanup()
|
132
|
-
{
|
133
|
-
local pids=`jobs -p`
|
134
|
-
set +e
|
135
|
-
if [[ "$pids" != "" ]]; then
|
136
|
-
kill $pids >/dev/null 2>/dev/null
|
137
|
-
fi
|
138
|
-
}
|
139
|
-
|
140
|
-
trap cleanup EXIT
|
141
|
-
parse_options "$@"
|
142
|
-
APP_UID=`id -u`
|
143
|
-
APP_GID=`id -g`
|
144
|
-
|
145
|
-
if $LOCAL_BUILD; then
|
146
|
-
DISTROS=`"$SELFROOT/internal/get_distro_id"`
|
147
|
-
ARCHS=`"$SELFROOT/internal/get_distro_arch"`
|
148
|
-
echo "Building for local system: $DISTROS-$ARCHS"
|
149
|
-
fi
|
150
|
-
|
151
|
-
if [[ "$SELFROOT_ON_DOCKER_HOST" = "$SELFROOT" ]]; then
|
152
|
-
verbose_run mkdir -p "$OUTPUT_DIR"
|
153
|
-
fi
|
154
|
-
|
155
|
-
verbose_run exec docker run --rm --privileged \
|
156
|
-
-v "$SELFROOT_ON_DOCKER_HOST:/system:ro" \
|
157
|
-
-v "$PASSENGER_DIR:/passenger" \
|
158
|
-
-v "$OUTPUT_DIR:/output" \
|
159
|
-
-v "$CACHE_DIR:/cache" \
|
160
|
-
-e "APP_UID=$APP_UID" \
|
161
|
-
-e "APP_GID=$APP_GID" \
|
162
|
-
-e "CONCURRENCY=$CONCURRENCY" \
|
163
|
-
-e "DISTROS=$DISTROS" \
|
164
|
-
-e "ARCHS=$ARCHS" \
|
165
|
-
-e "TASK=$TASK" \
|
166
|
-
-e "CLEAN=$CLEAN" \
|
167
|
-
-e "FORCE_PASSENGER_VERSION=$FORCE_PASSENGER_VERSION" \
|
168
|
-
-e "VERBOSE=$VERBOSE" \
|
169
|
-
phusion/passenger_rpm_automation \
|
170
|
-
/system/internal/exec_build
|
@@ -1,41 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
PROJECT_DIR="$1"
|
3
|
-
GIT_URL="$2"
|
4
|
-
|
5
|
-
if [[ "$PROJECT_DIR" = "" || "$GIT_URL" = "" ]]; then
|
6
|
-
echo "Usage: ./create_project <DIR> <GIT_URL>"
|
7
|
-
exit 1
|
8
|
-
fi
|
9
|
-
|
10
|
-
set -e
|
11
|
-
|
12
|
-
project_dir_parent=`dirname "$PROJECT_DIR"`
|
13
|
-
fstype=`df -T "$project_dir_parent" | tail -n 1 | awk '{ print $2 }'`
|
14
|
-
if [[ "$fstype" == vmhgfs || "$fstype" == vboxfs ]]; then
|
15
|
-
echo "You cannot put the project dir in a VMWare or VirtualBox shared folder."
|
16
|
-
exit 1
|
17
|
-
fi
|
18
|
-
|
19
|
-
if [[ `id -u` != 0 ]]; then
|
20
|
-
echo "You must run this command with root privileges."
|
21
|
-
exit 1
|
22
|
-
fi
|
23
|
-
|
24
|
-
set -x
|
25
|
-
|
26
|
-
mkdir "$PROJECT_DIR"
|
27
|
-
mkdir "$PROJECT_DIR/git"
|
28
|
-
mkdir "$PROJECT_DIR/cache"
|
29
|
-
mkdir "$PROJECT_DIR/cache/root"
|
30
|
-
mkdir "$PROJECT_DIR/cache/mock_lib"
|
31
|
-
mkdir "$PROJECT_DIR/cache/mock_cache"
|
32
|
-
mkdir "$PROJECT_DIR/repo"
|
33
|
-
mkdir "$PROJECT_DIR/build"
|
34
|
-
|
35
|
-
echo "$GIT_URL" > "$PROJECT_DIR/git_url"
|
36
|
-
(cd "$PROJECT_DIR" && ln -s build/log/state.log state.log)
|
37
|
-
|
38
|
-
chown -R jenkins: "$PROJECT_DIR"
|
39
|
-
chmod u=rwx,g=x,o= "$PROJECT_DIR" "$PROJECT_DIR/cache"
|
40
|
-
setfacl -m u:www-data:rx "$PROJECT_DIR" "$PROJECT_DIR/repo"
|
41
|
-
setfacl -d -m u:www-data:rx "$PROJECT_DIR/repo"
|
data/packaging/rpm/git_update
DELETED
@@ -1,88 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
|
4
|
-
SELFROOT=`dirname "$0"`
|
5
|
-
SELFROOT=`cd "$SELFROOT" && pwd`
|
6
|
-
|
7
|
-
GIT_DIR=
|
8
|
-
GIT_URL=
|
9
|
-
GIT_REF=origin/master
|
10
|
-
|
11
|
-
function usage()
|
12
|
-
{
|
13
|
-
echo "Usage: ./git_update [OPTIONS]"
|
14
|
-
echo "Update git sources for a project."
|
15
|
-
echo
|
16
|
-
echo "Required options:"
|
17
|
-
echo " -p PATH Path to a project"
|
18
|
-
echo
|
19
|
-
echo " -P PATH Path to a Git repo directory"
|
20
|
-
echo " -u URL Git URL"
|
21
|
-
echo
|
22
|
-
echo "Optional options:"
|
23
|
-
echo " -r REF Use this specific Git commit or tag"
|
24
|
-
}
|
25
|
-
|
26
|
-
function parse_options()
|
27
|
-
{
|
28
|
-
local OPTIND=1
|
29
|
-
local opt
|
30
|
-
while getopts "p:P:u:r:h" opt; do
|
31
|
-
case "$opt" in
|
32
|
-
p)
|
33
|
-
GIT_DIR="$OPTARG/git"
|
34
|
-
GIT_URL=`cat "$OPTARG/git_url"`
|
35
|
-
;;
|
36
|
-
P)
|
37
|
-
GIT_DIR="$OPTARG"
|
38
|
-
;;
|
39
|
-
u)
|
40
|
-
GIT_URL="$OPTARG"
|
41
|
-
;;
|
42
|
-
r)
|
43
|
-
GIT_REF="$OPTARG"
|
44
|
-
;;
|
45
|
-
h)
|
46
|
-
usage
|
47
|
-
exit
|
48
|
-
;;
|
49
|
-
*)
|
50
|
-
return 1
|
51
|
-
;;
|
52
|
-
esac
|
53
|
-
done
|
54
|
-
|
55
|
-
if [[ "$GIT_DIR" = "" ]]; then
|
56
|
-
echo "Please specify a project using -p, or a Git repo using -P."
|
57
|
-
exit 1
|
58
|
-
fi
|
59
|
-
if [[ "$GIT_URL" = "" ]]; then
|
60
|
-
echo "Please specify a project using -p, or Git URL using -u."
|
61
|
-
exit 1
|
62
|
-
fi
|
63
|
-
}
|
64
|
-
|
65
|
-
function cleanup()
|
66
|
-
{
|
67
|
-
local pids=`jobs -p`
|
68
|
-
set +e
|
69
|
-
if [[ "$pids" != "" ]]; then
|
70
|
-
kill $pids >/dev/null 2>/dev/null
|
71
|
-
fi
|
72
|
-
}
|
73
|
-
|
74
|
-
trap cleanup EXIT
|
75
|
-
parse_options "$@"
|
76
|
-
APP_UID=`id -u`
|
77
|
-
APP_GID=`id -g`
|
78
|
-
|
79
|
-
exec docker run --rm \
|
80
|
-
-v "$SELFROOT:/system:ro" \
|
81
|
-
-v "$GIT_DIR:/git" \
|
82
|
-
-e "APP_UID=$APP_UID" \
|
83
|
-
-e "APP_GID=$APP_GID" \
|
84
|
-
-e "GIT_URL=$GIT_URL" \
|
85
|
-
-e "GIT_REF=$GIT_REF" \
|
86
|
-
phusion/passenger_rpm_automation \
|
87
|
-
/system/internal/my_init --skip-runit --skip-startup-files --quiet -- \
|
88
|
-
/system/internal/git_update
|