Run 'apt-get autoclean' and return the size (un-rounded, in bytes) of freed space
()
| 625 | |
| 626 | |
| 627 | def apt_autoclean(): |
| 628 | """Run 'apt-get autoclean' and return the size (un-rounded, in bytes) of freed space""" |
| 629 | try: |
| 630 | return run_cleaner_cmd('apt-get', ['autoclean'], r'^Del .*\[([\d.]+[a-zA-Z]{2})}]', ['^E: ']) |
| 631 | except subprocess.CalledProcessError as e: |
| 632 | raise RuntimeError( |
| 633 | f"Error calling '{' '.join(e.cmd)}':\n{e.output}") from e |
| 634 | |
| 635 | |
| 636 | def apt_clean(): |