1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-31 07:51:08 +03:00

[PATCH] export DEVNAME on remove event

Fix from Sjoerd Simons <sjoerd@spring.luon.net>, it got lost
on the recent reorganization of the udev processing stages.
This commit is contained in:
kay.sievers@vrfy.org 2004-11-23 05:05:37 +01:00 committed by Greg KH
parent 69d2dbd66f
commit a97b06483e

7
udev.c
View File

@ -187,8 +187,11 @@ int main(int argc, char *argv[], char *envp[])
/* get node from db, delete it*/ /* get node from db, delete it*/
retval = udev_remove_device(&udev); retval = udev_remove_device(&udev);
/* run scripts */ /* run dev.d/ scripts if we're not instructed to ignore the event */
dev_d_execute(&udev, DEVD_DIR, DEVD_SUFFIX); if (udev.devname[0] != '\0') {
setenv("DEVNAME", udev.devname, 1);
dev_d_execute(&udev, DEVD_DIR, DEVD_SUFFIX);
}
} }
exit: exit: