# File lib/puppet/provider/package/dpkg.rb, line 61
61:     def install
62:         unless file = @resource[:source]
63:             raise ArgumentError, "You cannot install dpkg packages without a source"
64:         end
65: 
66:         args = []
67: 
68:         if @resource[:configfiles] == :keep
69:             args << '--force-confold'
70:         else
71:             args << '--force-confnew'
72:         end
73:         args << '-i' << file
74: 
75:         dpkg(*args)
76:     end