# File lib/puppet/network/authstore.rb, line 15
15:         def allow(pattern)
16:             # a simple way to allow anyone at all to connect
17:             if pattern == "*"
18:                 @globalallow = true
19:             else
20:                 store(:allow, pattern)
21:             end
22: 
23:             return nil
24:         end