Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions omnibus/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ GIT

GIT
remote: https://github.com/chef/omnibus.git
revision: d3264e1fa66cb53ea1124f45c0b9c04ff7c0cdf0
revision: 39f0b3049936841589406bdcfb9d115f4db17041
branch: main
specs:
omnibus (9.1.0)
omnibus (9.1.1)
aws-sdk-s3 (~> 1.116.0)
chef-cleanroom (~> 1.0)
chef-utils (>= 15.4)
Expand Down
7 changes: 6 additions & 1 deletion omnibus/omnibus.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
use_s3_caching true
s3_access_key ENV["AWS_ACCESS_KEY_ID"]
s3_secret_key ENV["AWS_SECRET_ACCESS_KEY"]
s3_bucket "opscode-omnibus-cache"
s3_bucket 'opscode-omnibus-cache-private'
s3_acl 'private'
s3_region 'us-west-2'

build_retries 0
fetcher_retries 3
Expand All @@ -53,6 +55,9 @@
arch = (ENV["OMNIBUS_WINDOWS_ARCH"] || "").downcase
windows_arch %w{x86 x64}.include?(arch) ? arch.to_sym : :x86

# note, this is statically set in the omnibus-buildkite-plugin, you are always going to be forced to use internal sources. If you dont want internal sources, you must enable this to false.
# use_internal_sources ENV.fetch("OMNIBUS_USE_INTERNAL_SOURCES", true)

# Build in FIPS compatability mode
# ------------------------------
fips_mode (ENV["OMNIBUS_FIPS_MODE"] || "").casecmp("true") >= 0
Loading