Switched apt repos back to the HP Public Cloud ones.
This commit is contained in:
parent
3808d78f9d
commit
c4ef58766e
@ -77,7 +77,8 @@ A report from the cache is found at http://localhost:3142/acng-report.html
|
|||||||
|
|
||||||
# Running hLinux as the base OS
|
# Running hLinux as the base OS
|
||||||
hLinux can be installed and run as the base OS for all the vms defined in mini-mon. To this comment/uncomment the appropriate lines in the Vagrantfile.
|
hLinux can be installed and run as the base OS for all the vms defined in mini-mon. To this comment/uncomment the appropriate lines in the Vagrantfile.
|
||||||
There are a couple of minor problem which would slow down development and are why at this point hLinux has not been turned on by default:
|
Also switch to the proper base apt repos in recipes/default.rb. There are a couple of minor problem which would slow down development and are why at
|
||||||
|
this point hLinux has not been turned on by default:
|
||||||
- The vboxsf filesystem driver is not working correctly in hLinux, this prevents home directory syncing.
|
- The vboxsf filesystem driver is not working correctly in hLinux, this prevents home directory syncing.
|
||||||
- Slow network performance of the hLinux vbox image makes some tasks annoying.
|
- Slow network performance of the hLinux vbox image makes some tasks annoying.
|
||||||
|
|
||||||
|
@ -9,14 +9,32 @@ bash 'move dist sources.list' do
|
|||||||
not_if do ::File.exists?('/etc/apt/sources.list-dist') end
|
not_if do ::File.exists?('/etc/apt/sources.list-dist') end
|
||||||
end
|
end
|
||||||
|
|
||||||
apt_repository 'hlinux' do
|
# HP Public Cloud apt mirror
|
||||||
uri 'http://hlinux-hrepo.usa.hp.com/hLinux'
|
apt_repository 'foundation' do
|
||||||
|
uri 'http://packages.dev.uswest.hpcloud.net/cloud/foundation'
|
||||||
arch 'amd64'
|
arch 'amd64'
|
||||||
distribution 'testing'
|
distribution node['lsb']['codename']
|
||||||
components ['main', 'contrib', 'non-free']
|
components ['main', 'restricted', 'universe', 'multiverse']
|
||||||
key 'http://hlinux-hrepo.usa.hp.com/hLinux/dists/testing/Release.gpg'
|
key 'http://packages.dev.uswest.hpcloud.net/cloud/som/developer/hpcs.gpg'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
apt_repository 'foundation-updates' do
|
||||||
|
uri 'http://packages.dev.uswest.hpcloud.net/cloud/foundation'
|
||||||
|
arch 'amd64'
|
||||||
|
distribution "#{node['lsb']['codename']}-updates/snapshots/rc20140129"
|
||||||
|
components ['main', 'restricted', 'universe', 'multiverse']
|
||||||
|
key 'http://packages.dev.uswest.hpcloud.net/cloud/som/developer/hpcs.gpg'
|
||||||
|
end
|
||||||
|
|
||||||
|
# hLinux apt repo
|
||||||
|
#apt_repository 'hlinux' do
|
||||||
|
# uri 'http://hlinux-hrepo.usa.hp.com/hLinux'
|
||||||
|
# arch 'amd64'
|
||||||
|
# distribution 'testing'
|
||||||
|
# components ['main', 'contrib', 'non-free']
|
||||||
|
# key 'http://hlinux-hrepo.usa.hp.com/hLinux/dists/testing/Release.gpg'
|
||||||
|
#end
|
||||||
|
|
||||||
# Look for a local apt cache, the base repo must be there before the apt cache but it should ideally be before the others
|
# Look for a local apt cache, the base repo must be there before the apt cache but it should ideally be before the others
|
||||||
rb = ruby_block "Check for local apt cache" do
|
rb = ruby_block "Check for local apt cache" do
|
||||||
action :nothing
|
action :nothing
|
||||||
@ -44,4 +62,3 @@ apt_repository 'dev' do
|
|||||||
components ['release']
|
components ['release']
|
||||||
key 'http://packages.dev.uswest.hpcloud.net/cloud/som/developer/hpcs.gpg'
|
key 'http://packages.dev.uswest.hpcloud.net/cloud/som/developer/hpcs.gpg'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user