# File lib/puppet/network/handler/fileserver.rb, line 50
50:         def create_default_mounts
51:             @mounts = {}
52:             Puppet.debug "No file server configuration file; autocreating #{MODULES} mount with default permissions"
53:             mount = Mount.new(MODULES)
54:             mount.allow("*")
55:             @mounts[MODULES] = mount
56: 
57:             Puppet.debug "No file server configuration file; autocreating #{PLUGINS} mount with default permissions"
58:             mount = PluginMount.new(PLUGINS)
59:             mount.allow("*")
60:             @mounts[PLUGINS] = mount
61:         end