see #5685
the typical way that ubuntu/debian admins install a local package on the command line and get depsolving is to either:
apt-get install -f ./package.deb and have that fail
apt-get -yf install when the former fails
or to:
- copy the deb to /var/cache/apt/archives/
apt-get install package
see https://unix.stackexchange.com/questions/159094/how-to-install-a-deb-file-by-dpkg-i-or-by-apt
we should fix it so that users can just:
and have it work the same way that yum supports localinstall of rpms transparently.
see #5685
the typical way that ubuntu/debian admins install a local package on the command line and get depsolving is to either:
apt-get install -f ./package.deband have that failapt-get -yf installwhen the former failsor to:
apt-get install packagesee https://unix.stackexchange.com/questions/159094/how-to-install-a-deb-file-by-dpkg-i-or-by-apt
we should fix it so that users can just:
and have it work the same way that yum supports
localinstallof rpms transparently.