From efa99c9051c6e50eca10653c85246f473fc71851 Mon Sep 17 00:00:00 2001 From: "olivier.hardouin@gmail.com" Date: Wed, 15 Jun 2016 16:10:23 +0200 Subject: [PATCH] add hotplug events add hotplug events (add, remove) to inform other subsystems remove obsolete /etc/mountd/event call Signed-off-by: Olivier Hardouin --- mount.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mount.c b/mount.c index 36b99f5..0133f17 100644 --- a/mount.c +++ b/mount.c @@ -161,6 +161,7 @@ static void mount_add_list(char *name, char *dev, char *serial, snprintf(tmp2, 64, "/tmp/run/mountd/%s", dev); symlink(tmp2, tmp); mount_new("/tmp/run/mountd/", dev); + system_printf("ACTION=add DEVICE=%s NAME=%s /sbin/hotplug-call mount", dev, name); } } @@ -715,7 +716,7 @@ static void mount_enum_drives(void) log_printf("removing %s\n", q->dev); snprintf(tmp, 64, "%s%s", uci_path, q->name); unlink(tmp); - system_printf("/etc/mountd/event remove %s %s", q->dev, q->name); + system_printf("ACTION=remove DEVICE=%s NAME=%s /sbin/hotplug-call mount", q->dev, q->name); free(q); mount_dump_uci_state(); system_printf("/etc/fonstated/ReloadSamba"); -- 2.25.1