remove libvirtd opt '-d' because it conflicts with systemd service

Change-Id: I05c78aa942509ea8dbd75558f4747d7ac1c4e6bc
This commit is contained in:
Jan Klare 2016-12-20 12:47:43 +01:00
parent 61fc649dd9
commit f7f6c28249
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ default['openstack']['compute']['rootwrap']['syslog_log_level'] = 'ERROR'
default['openstack']['compute']['driver'] = 'libvirt.LibvirtDriver'
# libvirtd_opts used in template for /etc/default/libvirt-bin
default['openstack']['compute']['libvirt']['libvirtd_opts'] = '-d -l'
default['openstack']['compute']['libvirt']['libvirtd_opts'] = '-l'
default['openstack']['compute']['libvirt']['auth_tcp'] = 'none'
# libvirt.max_clients (default: 20)

View File

@ -95,7 +95,7 @@ describe 'openstack-compute::libvirt' do
it 'template contents' do
[
/^start_libvirtd="yes"$/,
/^libvirtd_opts="-d -l"$/
/^libvirtd_opts="-l"$/
].each do |line|
expect(chef_run).to render_file(file.name).with_content(line)
end