# File lib/puppet/util/pidlock.rb, line 39
39:   def unlock(opts = {})
40:     opts = {:anonymous => false}.merge(opts)
41: 
42:     if mine? or (opts[:anonymous] and anonymous?)
43:       File.unlink(@lockfile)
44:       true
45:     else
46:       false
47:     end
48:   end