We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e9fb1 commit fb6af3dCopy full SHA for fb6af3d
lib/puppet/provider/package/dpkg.rb
@@ -172,11 +172,11 @@ def query
172
end
173
174
def uninstall
175
- flags = "-r"
+ args = ["-r"]
176
if @resource[:uninstall_options]
177
- flags += @resource[:uninstall_options]
+ args += @resource[:uninstall_options]
178
179
- dpkg *flags, @resource[:name]
+ dpkg *args, @resource[:name]
180
181
182
def purge
0 commit comments