summaryrefslogtreecommitdiff
path: root/lib/chef
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef')
-rw-r--r--lib/chef/resource/systemd_unit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/systemd_unit.rb b/lib/chef/resource/systemd_unit.rb
index f6384ac947..a100f29add 100644
--- a/lib/chef/resource/systemd_unit.rb
+++ b/lib/chef/resource/systemd_unit.rb
@@ -113,7 +113,7 @@ class Chef
when Hash
IniParse.gen do |doc|
content.each_pair do |sect, opts|
- doc.section(sect) do |section|
+ doc.section(sect, { option_sep: "=" }) do |section|
opts.each_pair do |opt, val|
[val].flatten.each do |v|
section.option(opt, v)