mirror of
https://github.com/inspec/inspec
synced 2025-02-16 22:18:38 +00:00
Fix omnibus configuration
The latest omnibus master expects certain settings to be enabled for S3 caching to work, and our omnibus.rb wasn't set up properly. Also aligning some of our settings to chef/chef's settings which we know to work properly. Signed-off-by: Adam Leff <adam@leff.co>
This commit is contained in:
parent
c11e4d2944
commit
a49467e779
1 changed files with 10 additions and 7 deletions
|
@ -32,21 +32,24 @@
|
|||
# Enable S3 asset caching
|
||||
# ------------------------------
|
||||
use_s3_caching true
|
||||
# s3_access_key ENV['AWS_ACCESS_KEY_ID']
|
||||
# s3_secret_key ENV['AWS_SECRET_ACCESS_KEY']
|
||||
# s3_bucket ENV['AWS_S3_BUCKET']
|
||||
s3_access_key ENV['AWS_ACCESS_KEY_ID']
|
||||
s3_secret_key ENV['AWS_SECRET_ACCESS_KEY']
|
||||
s3_bucket 'opscode-omnibus-cache'
|
||||
|
||||
# Customize compiler bits
|
||||
# ------------------------------
|
||||
# solaris_compiler 'gcc'
|
||||
# build_retries 5
|
||||
# fetcher_read_timeout 120
|
||||
# fetcher_retries 5
|
||||
|
||||
# Configure retries
|
||||
# similar settings to chef/chef
|
||||
# ------------------------------
|
||||
build_retries 3
|
||||
fetcher_retries 3
|
||||
fetcher_read_timeout 120
|
||||
|
||||
# Load additional software
|
||||
# ------------------------------
|
||||
software_gems ['omnibus-software']
|
||||
# software_gems ['omnibus-software']
|
||||
# local_software_dirs ['/path/to/local/software']
|
||||
|
||||
# Windows architecture defaults
|
||||
|
|
Loading…
Add table
Reference in a new issue