Add a frontend for config-file-conflict.
This commit is contained in:
parent
0969079731
commit
4ea74c1cd5
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
lubuntu-update-notifier (0.5) UNRELEASED; urgency=medium
|
||||
|
||||
* Add a frontend for config-file-conflict.
|
||||
|
||||
-- Simon Quigley <tsimonq2@ubuntu.com> Tue, 06 Dec 2022 12:35:46 -0600
|
||||
|
||||
lubuntu-update-notifier (0.4) hirsute; urgency=medium
|
||||
|
||||
* Added internationalization support.
|
||||
|
5
debian/copyright
vendored
5
debian/copyright
vendored
@ -2,8 +2,9 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Source: https://phab.lubuntu.me/source/lubuntu-update-notifier/
|
||||
|
||||
Files: *
|
||||
Copyright: © 2019 Lubuntu Team.
|
||||
© 2019 Hans P Möller <hmollercl@lubuntu.me>
|
||||
Copyright: 2019-2022 Lubuntu Team <lubuntu-devel@lists.ubuntu.com>
|
||||
2019 Hans P Möller <hmollercl@lubuntu.me>
|
||||
2022 Simon Quigley <tsimonq2@lubuntu.me>
|
||||
License: GPL-3+
|
||||
|
||||
License: GPL-3+
|
||||
|
@ -2,6 +2,7 @@
|
||||
# coding=utf-8
|
||||
|
||||
# Copyright (C) 2019 Hans P. Möller <hmollercl@lubuntu.me>
|
||||
# Copyright (C) 2022 Simon Quigley <tsimonq2@lubuntu.me>
|
||||
#
|
||||
# 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
|
||||
@ -312,6 +313,29 @@ class DialogUpg(QWidget):
|
||||
# print("PTY:" + str(self.slave))
|
||||
print("Status Details:" + details)
|
||||
|
||||
def config_file_conflict(self, transaction, cur, new):
|
||||
title = "Conflicting Configuration"
|
||||
text = "Updating the system will result in the following file being "
|
||||
text += "overwritten: " + cur + "\n\nWhat would you like to do?"
|
||||
query = QMessageBox()
|
||||
query.setWindowTitle(title)
|
||||
query.setText(text)
|
||||
query.setIcon(QMessageBox.Question)
|
||||
query.setStandardButtons(QMessageBox.Yes|QMessageBox.No)
|
||||
yes = query.button(QMessageBox.Yes)
|
||||
yes.setText("Overwrite")
|
||||
no = query.button(QMessageBox.No)
|
||||
no.setText("Keep Existing")
|
||||
query.setDefaultButton(no)
|
||||
query.exec_()
|
||||
|
||||
if query.clickedButton() == yes:
|
||||
answer = "replace"
|
||||
elif query.clickedButton() == no:
|
||||
answer = "keep"
|
||||
|
||||
self.trans2.resolve_config_file_conflict(config=cur, answer=answer)
|
||||
|
||||
def upgrade(self):
|
||||
'''runs upgrade'''
|
||||
try:
|
||||
@ -327,6 +351,8 @@ class DialogUpg(QWidget):
|
||||
self.trans2.connect("status-details-changed",
|
||||
self.status_details_changed)
|
||||
self.trans2.connect("status-changed", self.status_changed)
|
||||
self.trans2.connect("config-file-conflict",
|
||||
self.config_file_conflict)
|
||||
|
||||
# TODO make a terminal work to see more info
|
||||
# self.trans2.set_terminal(os.ttyname(self.slave))
|
||||
@ -334,8 +360,6 @@ class DialogUpg(QWidget):
|
||||
'''
|
||||
# TODO implement this
|
||||
self.trans2.connect("medium-required", self._on_medium_required)
|
||||
self.trans2.connect("config-file-conflict",
|
||||
self._on_config_file_conflict)
|
||||
remove_obsoleted_depends
|
||||
'''
|
||||
self.trans2.set_debconf_frontend('kde')
|
||||
|
Loading…
x
Reference in New Issue
Block a user