summaryrefslogtreecommitdiff
path: root/lib/chef/provider/mount/solaris.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/provider/mount/solaris.rb')
-rw-r--r--lib/chef/provider/mount/solaris.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/mount/solaris.rb b/lib/chef/provider/mount/solaris.rb
index 245e04f40e..1f9dcf15d1 100644
--- a/lib/chef/provider/mount/solaris.rb
+++ b/lib/chef/provider/mount/solaris.rb
@@ -214,7 +214,7 @@ class Chef
def vfstab_write(contents)
etc_tempfile do |f|
- f.write(contents.join(""))
+ f.write(contents.join)
f.close
# move, preserving modes of destination file
mover = Chef::FileContentManagement::Deploy.strategy(true)