87 lines
2.3 KiB
Python
Executable File
87 lines
2.3 KiB
Python
Executable File
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2006, TUBITAK/UEKAE
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
# the terms of the GNU General Public License as published by the Free
|
|
# Software Foundation; either version 2 of the License, or (at your option)
|
|
# any later version.
|
|
#
|
|
# Please read the COPYING file.
|
|
|
|
import os
|
|
import sys
|
|
|
|
import pisi
|
|
|
|
installdb = pisi.db.installdb.InstallDB()
|
|
|
|
def ask_action(msg, actions, default):
|
|
while True:
|
|
s = eval(input(msg))
|
|
if len(s) == 0:
|
|
return default
|
|
else:
|
|
if s not in actions:
|
|
continue
|
|
|
|
return s
|
|
|
|
def get_installed_packages():
|
|
return installdb.list_installed()
|
|
|
|
def check_changed_config_files(package):
|
|
|
|
all_files = installdb.get_files(package)
|
|
config_files = [x for x in all_files.list if x.type == 'config']
|
|
config_paths = ["/" + str(x.path) for x in config_files]
|
|
|
|
newconfig = []
|
|
for path in config_paths:
|
|
if os.path.exists(path) and os.path.exists(path + ".newconfig"):
|
|
newconfig.append(path)
|
|
|
|
return newconfig
|
|
|
|
def show_changes(package, changed):
|
|
prompt = "%s has new config files. Would you like to see them [Y/n] " % package
|
|
if ask_action(prompt, ["y","n"], "y") == "n":
|
|
return
|
|
|
|
for file in changed:
|
|
answer = "?"
|
|
while answer == "?" or answer not in ["n", "y"]:
|
|
prompt = " %s has changed. Would you like to overwrite new config file [N/y/?] " % file
|
|
answer = ask_action(prompt, ["y", "n", "?"], "n")
|
|
|
|
if answer == "y":
|
|
os.rename(file+".newconfig", file)
|
|
if answer == "n":
|
|
break
|
|
if answer == "?":
|
|
os.system("diff -u %s %s | less" % (file, file + ".newconfig"))
|
|
|
|
|
|
def check_package(package):
|
|
changed = check_changed_config_files(package)
|
|
if changed:
|
|
show_changes(package, changed)
|
|
|
|
|
|
def check_changes():
|
|
packages = get_installed_packages()
|
|
for pkg in packages:
|
|
check_package(pkg)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) == 1:
|
|
print("Checking all packages")
|
|
check_changes()
|
|
if len(sys.argv) == 2:
|
|
check_package(sys.argv[1])
|
|
if len(sys.argv) > 2:
|
|
for pkg in sys.argv[1:]:
|
|
check_package(pkg)
|