yum-qubes-hooks: update with respect to dnf-qubes-hooks
Add call to postInstall script, notify condition/ add appmenu-sync and notify-updates to conf file
This commit is contained in:
parent
da3c22b4a6
commit
2b54b245d6
@ -1,2 +1,4 @@
|
|||||||
[main]
|
[main]
|
||||||
enabled=1
|
enabled=1
|
||||||
|
notify-updates=1
|
||||||
|
sync-appmenus=1
|
||||||
|
@ -22,21 +22,26 @@
|
|||||||
|
|
||||||
|
|
||||||
from yum.plugins import TYPE_CORE
|
from yum.plugins import TYPE_CORE
|
||||||
from yum.constants import *
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
requires_api_version = '2.4'
|
requires_api_version = '2.4'
|
||||||
plugin_type = (TYPE_CORE,)
|
plugin_type = (TYPE_CORE,)
|
||||||
|
|
||||||
|
|
||||||
def posttrans_hook(conduit):
|
def posttrans_hook(conduit):
|
||||||
# Get all updates available _before_ this transaction
|
if conduit.confBool('main', 'notify-updates', default=True):
|
||||||
pkg_list = conduit._base.doPackageLists(pkgnarrow='updates')
|
# Get all updates available _before_ this transaction
|
||||||
|
pkg_list = conduit._base.doPackageLists(pkgnarrow='updates')
|
||||||
# Get packages installed in this transaction...
|
# Get packages installed in this transaction...
|
||||||
ts = conduit.getTsInfo()
|
ts = conduit.getTsInfo()
|
||||||
all = ts.getMembers()
|
all_transactions = ts.getMembers()
|
||||||
# ...and filter them out of available updates
|
# ...and filter them out of available updates
|
||||||
filtered_updates = filter(lambda x: x not in all, pkg_list.updates)
|
filtered_updates = list(
|
||||||
|
filter(lambda x: x not in all_transactions, pkg_list.updates))
|
||||||
# Notify dom0 about left updates count
|
# Notify dom0 about left updates count
|
||||||
subprocess.call(['/usr/lib/qubes/qrexec-client-vm', 'dom0', 'qubes.NotifyUpdates', '/bin/echo', str(len(filtered_updates))])
|
subprocess.call(
|
||||||
|
['/usr/lib/qubes/qrexec-client-vm', 'dom0', 'qubes.NotifyUpdates',
|
||||||
|
'/bin/echo', str(len(filtered_updates))])
|
||||||
|
conduit.info(1, "Notifying dom0 about installed/removed applications")
|
||||||
|
# Notify and add app to app-menus
|
||||||
|
subprocess.call(['/etc/qubes-rpc/qubes.PostInstall'])
|
||||||
|
Loading…
Reference in New Issue
Block a user