public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] extrahd: add forgotten udev_event handler to mount partitions via udev
@ 2023-09-27 15:04 Arne Fitzenreiter
  2023-09-28  9:38 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Arne Fitzenreiter @ 2023-09-27 15:04 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 876 bytes --]

Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
---
 config/extrahd/extrahd.pl | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/config/extrahd/extrahd.pl b/config/extrahd/extrahd.pl
index cc85228d5..bcde077d0 100644
--- a/config/extrahd/extrahd.pl
+++ b/config/extrahd/extrahd.pl
@@ -116,7 +116,21 @@ extrahd_umount() {
 	done < /var/ipfire/extrahd/devices
 }
 
+handle_udev_event() {
+	case "${ACTION}" in
+		add)
+			if [ -n "${ID_FS_UUID}" ]; then
+				extrahd_mount "UUID=${ID_FS_UUID}" || return $?
+			fi
+			;;
+	esac
+
+	return 0
+}
+
 main() {
+	( echo "$@"; set ) > /tmp/extrahd.$$
+
 	local command="${1}"
 	shift
 
@@ -129,6 +143,9 @@ main() {
 		umount)
 			extrahd_umount "${@}" || rc="${rc}"
 			;;
+		udev-event)
+			handle_udev_event "${@}" || rc="${rc}"
+			;;
 		scanhd)
 			exec /usr/local/bin/scanhd "${@}"
 			;;
-- 
2.38.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-09-28  9:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-27 15:04 [PATCH] extrahd: add forgotten udev_event handler to mount partitions via udev Arne Fitzenreiter
2023-09-28  9:38 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox