I created a chef script using the mount() function. However, I need to have Chef mount the equivalent:
mount HOST:DIR MOUNT -o nolock
This prevents a number of errors in the application IBM WAS 8.5.5.5 FixPack 5. Is there a way to override the parameters sent to include -o nolock? Perhaps a way to issue the raw command in worse case?
Here’s the current call that causes the application installation to blow up later down the road.
mount “/mnt/software” do
device dev
fstype "nfs"
action :mount
end