All pastes #1407998 Raw Edit

[phear]crippler

public python v1 · immutable
#1407998 ·published 2009-04-30 00:54 UTC
rendered paste body
#!/usr/bin/python#Update cleaner for Debian Linux based systems__module_name__ = "Update Cleaner"__module_version__ = "1.0"__module_description__ = "Updates software sources list and packages. This program even removes obsolete packages."#Import the string and os functionsimport stringimport os#Prompt the userprint string.upper('System Updating and cleaning...')#Update the systemos.system('sudo apt-get update && sudo apt-get upgrade')#Clean the systemos.system('sudo apt-get autoclean && sudo apt-get autoremove')#End the programprint string.upper('System Updated and free of obsolete packages!')#EOF