commit: 194818d4e62d1a97756a0f97f785105d50118d5d Author: John Helmert III <ajak <AT> gentoo <DOT> org> AuthorDate: Thu Oct 13 14:22:15 2022 +0000 Commit: John Helmert III <ajak <AT> gentoo <DOT> org> CommitDate: Thu Oct 13 14:22:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=194818d4
app-emulation/qemu-guest-agent: call udev_reload in postinst/postrm Closes: https://bugs.gentoo.org/854549 Signed-off-by: John Helmert III <ajak <AT> gentoo.org> app-emulation/qemu-guest-agent/qemu-guest-agent-6.0.0.ebuild | 5 +++++ app-emulation/qemu-guest-agent/qemu-guest-agent-7.1.0.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/app-emulation/qemu-guest-agent/qemu-guest-agent-6.0.0.ebuild b/app-emulation/qemu-guest-agent/qemu-guest-agent-6.0.0.ebuild index 407a73b44dae..755c49bd5d95 100644 --- a/app-emulation/qemu-guest-agent/qemu-guest-agent-6.0.0.ebuild +++ b/app-emulation/qemu-guest-agent/qemu-guest-agent-6.0.0.ebuild @@ -71,4 +71,9 @@ src_install() { pkg_postinst() { elog "You should add 'qemu-guest-agent' to the default runlevel." elog "e.g. rc-update add qemu-guest-agent default" + udev_reload +} + +pkg_postrm() { + udev_reload } diff --git a/app-emulation/qemu-guest-agent/qemu-guest-agent-7.1.0.ebuild b/app-emulation/qemu-guest-agent/qemu-guest-agent-7.1.0.ebuild index 1a76fe360988..0f2019bc9f7e 100644 --- a/app-emulation/qemu-guest-agent/qemu-guest-agent-7.1.0.ebuild +++ b/app-emulation/qemu-guest-agent/qemu-guest-agent-7.1.0.ebuild @@ -68,4 +68,9 @@ src_install() { pkg_postinst() { elog "You should add 'qemu-guest-agent' to the default runlevel." elog "e.g. rc-update add qemu-guest-agent default" + udev_reload +} + +pkg_postrm() { + udev_reload }
