Fixes so the converge doesn't change it

@@ -14,7 +19,7 @@

-use_syslog=False
+use_syslog=false

2015-03-18 20:06:24.757 |        # Default value is False
2015-03-18 20:06:24.758 |        use_syslog=False

It was changing it to this:
2015-03-18 20:06:24.758 |        use_syslog=false

It has the same effect in the end.

Change-Id: I281e471551a3675b0fcb8fdcde70bd810b8215d4
This commit is contained in:
JJ Asghar 2015-03-18 14:36:18 -05:00
parent a80f2024ae
commit b030ddb165
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ default['openstack']['compute']['network']['plugins'] = ['openvswitch']
# rootwrap.conf
default['openstack']['compute']['rootwrap']['filters_path'] = '/etc/nova/rootwrap.d,/usr/share/nova/rootwrap'
default['openstack']['compute']['rootwrap']['exec_dirs'] = '/sbin,/usr/sbin,/bin,/usr/bin'
default['openstack']['compute']['rootwrap']['use_syslog'] = false
default['openstack']['compute']['rootwrap']['use_syslog'] = 'False'
default['openstack']['compute']['rootwrap']['syslog_log_facility'] = 'syslog'
default['openstack']['compute']['rootwrap']['syslog_log_level'] = 'ERROR'

View File

@ -838,7 +838,7 @@ describe 'openstack-compute::nova-common' do
[
%r(^filters_path=/etc/nova/rootwrap.d,/usr/share/nova/rootwrap$),
%r(^exec_dirs=/sbin,/usr/sbin,/bin,/usr/bin$),
/^use_syslog=false$/,
/^use_syslog=False$/,
/^syslog_log_facility=syslog$/,
/^syslog_log_level=ERROR$/
].each do |line|