@@ -226,24 +226,24 @@ private Hashtable PublicConfiguration
226
226
if ( ! IsChefServerUrlEmpty && ! IsValidationClientNameEmpty )
227
227
{
228
228
string UserConfig = @"
229
- chef_server_url \"" {0}\""
230
- validation_client_name \"" {1}\""
229
+ chef_server_url ' {0}'
230
+ validation_client_name ' {1}'
231
231
" ;
232
232
ClientConfig += string . Format ( UserConfig , this . ChefServerUrl , this . ValidationClientName ) ;
233
233
}
234
234
// Append ChefServerUrl to end of ClientRb
235
235
else if ( ! IsChefServerUrlEmpty )
236
236
{
237
237
string UserConfig = @"
238
- chef_server_url \"" {0}\""
238
+ chef_server_url ' {0}'
239
239
" ;
240
240
ClientConfig += string . Format ( UserConfig , this . ChefServerUrl ) ;
241
241
}
242
242
// Append ValidationClientName to end of ClientRb
243
243
else if ( ! IsValidationClientNameEmpty )
244
244
{
245
245
string UserConfig = @"
246
- validation_client_name \"" {0}\""
246
+ validation_client_name ' {0}'
247
247
" ;
248
248
ClientConfig += string . Format ( UserConfig , this . ValidationClientName ) ;
249
249
}
@@ -252,8 +252,8 @@ private Hashtable PublicConfiguration
252
252
else if ( ! IsChefServerUrlEmpty && ! IsValidationClientNameEmpty )
253
253
{
254
254
string UserConfig = @"
255
- chef_server_url \"" {0}\""
256
- validation_client_name \"" {1}\""
255
+ chef_server_url ' {0}'
256
+ validation_client_name ' {1}'
257
257
" ;
258
258
ClientConfig = string . Format ( UserConfig , this . ChefServerUrl , this . ValidationClientName ) ;
259
259
}
0 commit comments