Skip to content
Snippets Groups Projects
Commit 956143ef authored by Alessandro Costantini's avatar Alessandro Costantini
Browse files

FIX: openstack-dashboard-ubuntu-theme package dependecy removed from controller

parent 81d98c7e
No related branches found
No related tags found
2 merge requests!31Mitaka,!30Dev roadtomitaka
......@@ -9,6 +9,7 @@ class iaas::profile::horizon (
$admin_interface = undef,
) {
class { '::horizon':
allowed_hosts => '*',
server_aliases => union([$endpoint_address, $::facts["ipaddress_${public_interface}"]], $endpoint_servers),
......@@ -31,13 +32,6 @@ class iaas::profile::horizon (
'enable_vpn' => true,
'enable_router' => true,
},
}->
# # remove a package and purge its config files
package { 'openstack-dashboard-ubuntu-theme':
ensure => purged,
# ensure => absent,
subscribe => Package['openstack-dashboard'],
}
}
......@@ -71,6 +71,13 @@ $neutron_ext2_ipend = undef,
mode => '0550',
}
# Exclude openstack-dashboard-ubuntu-theme package
apt::pin { 'openstack-dashboard-ubuntu-theme':
packages => 'openstack-dashboard-ubuntu-theme',
release => 'openstack-dashboard-ubuntu-theme',
component => 'main',
priority => -1
} ->
# Classes
# class { 'iaas::profile::base':
......
......@@ -87,6 +87,13 @@ $public_interf_method = $iaas::params::public_interf_method,
ensure => 'present',
} ->
# Exclude openstack-dashboard-ubuntu-theme package
apt::pin { 'openstack-dashboard-ubuntu-theme':
packages => 'openstack-dashboard-ubuntu-theme',
release => 'openstack-dashboard-ubuntu-theme',
component => 'main',
priority => -1
} ->
# Classes
# class { 'iaas::profile::base':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment