From e9b43506172e312b1a1f4c912865a99995861060 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 9 Mar 2023 13:01:36 +0100 Subject: [PATCH] Fix source of cloud-specific mdev functions We need to source it with '.' fixes commit c335944911d6 (Add kyua testsuite and make code more portable) --- lib/tiny-cloud/mdev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tiny-cloud/mdev b/lib/tiny-cloud/mdev index ffc040c..6242278 100644 --- a/lib/tiny-cloud/mdev +++ b/lib/tiny-cloud/mdev @@ -35,5 +35,5 @@ mod__vnic_eth_hotplug() { # load cloud-specific functions : "${LIBDIR:=$PREFIX/lib}" if [ -f "$LIBDIR"/tiny-cloud/"$CLOUD"/mdev ]; then - "$LIBDIR"/tiny-cloud/"$CLOUD"/mdev + . "$LIBDIR"/tiny-cloud/"$CLOUD"/mdev fi