Comment 1 for bug 1756595

Revision history for this message
Brian Murray (brian-murray) wrote :

This actually comes from apt (apt-pkg/deb/dpkgpm.cc) and no filtering of the df output is done.

2272 // attach df -l log (to learn about filesystem status)
2273 if (FileExists("/bin/df"))
2274 {
2275
2276 fprintf(report, "Df:\n");
2277 FILE *log = popen("/bin/df -l","r");
2278 if(log != NULL)
2279 {
2280 char buf[1024];
2281 while( fgets(buf, sizeof(buf), log) != NULL)
2282 fprintf(report, " %s", buf);
2283 pclose(log);
2284 }
2285 }