lib/dev-lxc/container.rb in dev-lxc-2.3.2 vs lib/dev-lxc/container.rb in dev-lxc-2.3.3
- old
+ new
@@ -110,10 +110,10 @@
exit 1
end
puts "Installing #{package_path} in container '#{self.name}'"
case File.extname(package_path)
when ".deb"
- install_command = "dpkg -D10 -i --skip-same-version #{package_path}"
+ install_command = "dpkg -i --skip-same-version #{package_path}"
when ".rpm"
install_command = "rpm -Uvh #{package_path}"
end
run_command(install_command)
end