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