diff --git a/udev/udev-qubes-block.rules b/udev/udev-qubes-block.rules index 364f5b2..52c4c26 100644 --- a/udev/udev-qubes-block.rules +++ b/udev/udev-qubes-block.rules @@ -10,11 +10,11 @@ ENV{MAJOR}=="202", GOTO="qubes_block_end" ENV{MAJOR}=="253", GOTO="qubes_block_end" IMPORT{db}="QUBES_EXPOSED" -ACTION=="add", IMPORT{program}="/usr/lib/qubes/udev-block-add-change" -ACTION=="change", IMPORT{program}="/usr/lib/qubes/udev-block-add-change" -ACTION=="remove", RUN+="/usr/lib/qubes/udev-block-remove" +ACTION=="add", IMPORT{program}="/usr/libexec/qubes/udev-block-add-change" +ACTION=="change", IMPORT{program}="/usr/libexec/qubes/udev-block-add-change" +ACTION=="remove", RUN+="/usr/libexec/qubes/udev-block-remove" LABEL="qubes_block_end" # Cleanup disconnected frontend from xenstore -ACTION=="remove", SUBSYSTEM=="block", ENV{MAJOR}=="202", RUN+="/usr/lib/qubes/udev-block-cleanup" +ACTION=="remove", SUBSYSTEM=="block", ENV{MAJOR}=="202", RUN+="/usr/libexec/qubes/udev-block-cleanup" diff --git a/udev/udev-qubes-usb.rules b/udev/udev-qubes-usb.rules index e5e24a0..cd4e038 100644 --- a/udev/udev-qubes-usb.rules +++ b/udev/udev-qubes-usb.rules @@ -3,8 +3,8 @@ # Handle only USB devices SUBSYSTEM!="usb", GOTO="qubes_usb_end" -ACTION=="add", IMPORT{program}="/usr/lib/qubes/udev-usb-add-change" -ACTION=="change", IMPORT{program}="/usr/lib/qubes/udev-usb-add-change" -ACTION=="remove", RUN+="/usr/lib/qubes/udev-usb-remove" +ACTION=="add", IMPORT{program}="/usr/libexec/qubes/udev-usb-add-change" +ACTION=="change", IMPORT{program}="/usr/libexec/qubes/udev-usb-add-change" +ACTION=="remove", RUN+="/usr/libexec/qubes/udev-usb-remove" LABEL="qubes_usb_end"