# File lib/puppet/provider/package/apt.rb, line 90
90:   def run_preseed
91:     if response = @resource[:responsefile] and FileTest.exist?(response)
92:       self.info("Preseeding #{response} to debconf-set-selections")
93: 
94:       preseed response
95:     else
96:       self.info "No responsefile specified or non existant, not preseeding anything"
97:     end
98:   end