Added apt-transport-https before defining the https based apt repo

This commit is contained in:
Tim Kuhlman 2014-05-14 16:59:47 -06:00
parent 766fc2ccb9
commit 5c1e2a3a98
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
name "mini-mon"
maintainer "SOM Team"
maintainer "Mon Team"
maintainer_email "hpcs-mon@hp.com"
license "All rights reserved"
description "Base setup for all vagrant boxes"

View File

@ -20,6 +20,10 @@ rb.run_action(:create) # Run during compile time so that apt::cacher-client has
# Add in the cacher-client, it will do something or nothing depending on the value of node[:apt][:cacher_ipaddress]
include_recipe('apt::cacher-client')
# Some barebones distros do not yet have this installed
package 'apt-transport-https' do
action :install
end
apt_repository 'dev' do
uri 'https://region-a.geo-1.objects.hpcloudsvc.com/v1/46995959297574/mini-mon/public_repo'
arch 'amd64'