From 9918419127bbace972725ced88984ad2129ae5cb Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Mon, 1 Jun 2020 13:47:53 +0200 Subject: Handle the change of device-type storage device-types are now in /usr/share/lava-server/device-types/ and so device-type-patch does not work anymore. This patch support both location --- lava-master/device-types-patch/patch-device-type.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lava-master/device-types-patch/patch-device-type.sh (limited to 'lava-master/device-types-patch/patch-device-type.sh') diff --git a/lava-master/device-types-patch/patch-device-type.sh b/lava-master/device-types-patch/patch-device-type.sh new file mode 100644 index 0000000..eb7da43 --- /dev/null +++ b/lava-master/device-types-patch/patch-device-type.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +DEVTYPE_PATH=/etc/lava-server/dispatcher-config/device-types/ +if [ -e /usr/share/lava-server/device-types/ ];then + DEVTYPE_PATH=/usr/share/lava-server/device-types/ +fi + +cd $DEVTYPE_PATH +for patch in $(ls /root/device-types-patch/*patch) +do + echo "DEBUG: patch with $patch" + sed -i 's,lava_scheduler_app/tests/device-types/,,' $patch +done +chown -R lavaserver:lavaserver $DEVTYPE_PATH -- cgit 1.2.3-korg