Remove leading set from config

one of the config settings previously
contained a leading set before a config
setting.

This does not convert to the ini file format AFAIK, so
it has been changed.
This commit is contained in:
Dan Bode
2013-01-11 14:12:04 -08:00
parent 685777e2df
commit b5290c4f9b
2 changed files with 5 additions and 2 deletions

View File

@@ -64,6 +64,7 @@ describe 'swift::proxy' do
'bind_port = 8080',
"workers = #{facts[:processorcount]}",
'user = swift',
'log_level = INFO',
'[pipeline:main]',
'pipeline = healthcheck cache tempauth proxy-server',
'[app:proxy-server]',
@@ -89,7 +90,8 @@ describe 'swift::proxy' do
:workers => 3,
:pipeline => ['swauth', 'proxy-server'],
:allow_account_management => false,
:account_autocreate => false
:account_autocreate => false,
:log_level => 'DEBUG'
}
end
it 'should build the header file with provided values' do
@@ -99,6 +101,7 @@ describe 'swift::proxy' do
'bind_port = 80',
"workers = 3",
'user = swift',
'log_level = DEBUG',
'[pipeline:main]',
'pipeline = swauth proxy-server',
'[app:proxy-server]',

View File

@@ -7,7 +7,7 @@ bind_ip = <%= proxy_local_net_ip %>
<% end %>
workers = <%= workers %>
user = swift
set log_level = <%= log_level %>
log_level = <%= log_level %>
[pipeline:main]
pipeline = <%= pipeline.to_a.join(' ') %>