Does Ubuntu publish a list of packages which are the snap package in pulled in when one installs a dummy APT package?
I know that Chromium (20.04+) and Firefox (22.04+) are among them. Is there anything else?
Some users are already under the impression that "it often installs the snap anyway", so having a definitive list will be helpful.
- Parse the description of each package for the word "snap" - not really reliable, as mentioning here the DEB installs a snap isn't enforce.
- Parse the dependencies of each package and check whether the package requires snapd. Should be kind of reliable.
- Parse the commands execute while installing the DEB and check for
– noisefloor Dec 04 '23 at 15:51snap install .... Probably most reliable, but most coding work.