From: Arne Fitzenreiter <arne_f@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] extrahd: add forgotten udev_event handler to mount partitions via udev
Date: Wed, 27 Sep 2023 17:04:08 +0200 [thread overview]
Message-ID: <20230927150408.3190-1-arne_f@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 876 bytes --]
Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
---
| 17 +++++++++++++++++
1 file changed, 17 insertions(+)
--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
next reply other threads:[~2023-09-27 15:04 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-27 15:04 Arne Fitzenreiter [this message]
2023-09-28 9:38 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230927150408.3190-1-arne_f@ipfire.org \
--to=arne_f@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox