83d211836a
After yum transaction (install/upgrade/remove), yum-plugin-post-transaction-actions will execute script which trigger qvm-sync-appmenus in dom0 (through qrexec). THIS INTRODUCE NEW PREDEFINED COMMAND IN QREXEC
8 lines
154 B
Bash
Executable File
8 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
|
|
UPDATEABLE=`/usr/bin/xenstore-read qubes_vm_updateable`
|
|
|
|
if [ "$UPDATEABLE" = "True" ]; then
|
|
echo -n SYNC > /var/run/qubes/qrexec_agent
|
|
fi
|