Bug #14320
Some Nova config sections are removed on second puppet run
| Status: | Investigating | Start date: | 05/04/2012 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% | |
| Category: | nova | Spent time: | - | |
| Target version: | - | |||
| Keywords: | Branch: | |||
Description
notice: /Nova_config[libvirt_use_virtio_for_bridges]/ensure: removed notice: /Nova_config[iscsi_helper]/ensure: removed notice: /Nova_config[force_dhcp_release]/ensure: removed notice: /Nova_config[ec2_private_dns_show_ip]/ensure: removed
History
#1
Updated by Branan Purvine-Riley about 1 year ago
- Status changed from Unreviewed to Investigating
Tracked this down to openstack/manifests/all.pp:
if ($purge_nova_config) {
resources { 'nova_config':
purge => true,
}
}
So apparently some (non-puppet) step of the process is touching that config file, which we then purge on subsequent runs.