| Server IP : 188.151.22.197 / Your IP : 216.73.217.74 Web Server : Apache/2.4.62 (Rocky Linux) OpenSSL/3.5.5 System : Linux wsten.se 5.14.0-687.30.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 27 13:09:21 UTC 2026 x86_64 User : apache ( 48) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /opt/gitlab/embedded/service/omnibus-gitlab/ |
Upload File : |
# THis defines the dependencies needed for Chef and its cookbooks to # run. Any dependency needed by `gitlab-ctl reconfigure` should be # included here. # # Note that you must avoid installing a gem from a Git source in this # file because Bundler installs gems from source in a different # directory than prepackaged gems. Gems installed from source cannot be # found with the Ruby interpreter unless `bundle exec` is used. source 'https://rubygems.org' # To ensure LD_LIBRARY_PATH includes /opt/gitlab/embedded/lib avoid # the precompiled native gems. gem 'ffi', '1.17.2', force_ruby_platform: true # chef depends on unf_ext. This needs to be listed before Chef # since Cinc will look inside the Cinc RubyGems. gem 'unf_ext', '0.0.9.1' # The version here should be in agreement with /Gemfile.lock so that our rspec # testing stays consistent with the package contents. source 'https://packagecloud.io/cinc-project/stable' do gem 'chef', '18.3.0' gem 'chef-cli', '5.6.14' gem 'chef-bin', '18.3.0' gem 'chef-config', '18.3.0' gem 'chef-zero', '15.0.11' gem 'inspec-core', '6.6.0' end gem 'ohai', '18.1.18' # TODO: Include omnibus-ctl in the Gemfile # Currently omnibus-ctl is installed via config/software since we build # a custom version from the Git source for licensing reasons and for Ruby 3.2 fixes. gem 'acme-client', '2.0.28' gem 'rainbow', '3.1.1' gem 'gitlab-ruby-shadow', '2.5.1', require: 'shadow' gem 'tomlib', '0.6.0' gem 'mixlib-log', '3.2.3' gem 'rack', '2.2.21' gem 'remote_syslog-gitlab', '0.0.2' # pin the version of faraday and faraday-net_http temporarily until # conflicts between the version of net-http it requires and the version of # net-http shipped in the Gemfile can be resolved gem 'faraday-net_http', '3.0.2' gem 'faraday', '2.8.1' # Temporary workaround because upstream inspec-core does not list this as # a requirement and it causes failures during gitlab-ctl reconfigure in # the QA job pipelines. # This can be dropped once https://github.com/inspec/inspec/pull/6925 # has been merged and released. gem 'rubocop-ast', '1.21.0' # We need to install our own copy of license_finder since the # license_finder installed by gitlab-omnibus-builder appears to search # the builder gem directory instead of the Omnibus gem directory. gem 'license_finder', '7.2.1'