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