19 lines
455 B
Python
19 lines
455 B
Python
import subprocess
|
|
|
|
from print_helpers import print_gr
|
|
|
|
|
|
def run():
|
|
print("Running update")
|
|
subprocess.call(["apt", "update", "-y"])
|
|
subprocess.call(["apt", "upgrade", "-y"])
|
|
subprocess.call(["apt", "dist-upgrade", "-y"])
|
|
subprocess.call(["apt", "autoremove", "-y"])
|
|
subprocess.call(["apt", "autoclean", "-y"])
|
|
print_gr("All update processes finished, please check output for further details.")
|
|
|
|
|
|
functions = {
|
|
"run": run
|
|
}
|