summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-05-23 15:08:11 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2014-05-29 10:30:29 -0700
commit2baa06a66675a366f8f5cd3ad65ce66736d350a5 (patch)
treebc628f6b65178dd8af40d67e2874b6c3605a56df
parent23a6d55c918a9a9b92bccbaa60e9e5ebfa29b283 (diff)
downloadchef-2baa06a66675a366f8f5cd3ad65ce66736d350a5.tar.gz
remove FIXME
-rw-r--r--lib/chef/provider/mount/solaris.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/chef/provider/mount/solaris.rb b/lib/chef/provider/mount/solaris.rb
index 86a9d542f8..07ff4271bd 100644
--- a/lib/chef/provider/mount/solaris.rb
+++ b/lib/chef/provider/mount/solaris.rb
@@ -102,7 +102,6 @@ class Chef
passstr = pass == 0 ? "-" : pass
optstr = (actual_options.nil? || actual_options.empty?) ? "-" : actual_options.join(',')
- # FIXME: open a tempfile, write to it, close it, then rename it.
tempfile = Tempfile.new("vfstab", "etc")
tempfile.write(IO.read("/etc/vfstab"))
tempfile.puts("#{device}\t-\t#{mount_point}\t#{fstype}\t#{passstr}\t#{autostr}\t#{optstr}")