diff options
Diffstat (limited to 'lava-slave')
-rw-r--r-- | lava-slave/Dockerfile | 1 | ||||
-rwxr-xr-x | lava-slave/scripts/setup.sh | 7 | ||||
-rw-r--r-- | lava-slave/tags/.empty | 0 |
3 files changed, 8 insertions, 0 deletions
diff --git a/lava-slave/Dockerfile b/lava-slave/Dockerfile index cbaafdc..d9ae68a 100644 --- a/lava-slave/Dockerfile +++ b/lava-slave/Dockerfile @@ -43,6 +43,7 @@ COPY scripts/retire.sh /usr/local/bin/ RUN chmod 755 /usr/local/bin/retire.sh COPY devices/ /root/devices/ +COPY tags/ /root/tags/ COPY scripts/extra_actions /root/ RUN if [ -x /root/extra_actions ] ; then /root/extra_actions ; fi diff --git a/lava-slave/scripts/setup.sh b/lava-slave/scripts/setup.sh index 7cff479..f281f6b 100755 --- a/lava-slave/scripts/setup.sh +++ b/lava-slave/scripts/setup.sh @@ -113,6 +113,13 @@ do lavacli $LAVACLIOPTS devices add --type $devicetype --worker $worker $devicename || exit $? lavacli $LAVACLIOPTS devices dict set $devicename /root/devices/$worker/$device || exit $? fi + if [ -e /root/tags/$devicename ];then + while read tag + do + echo "DEBUG: Add tag $tag to $devicename" + lavacli $LAVACLIOPTS devices tags add $devicename $tag || exit $? + done < /root/tags/$devicename + fi done done diff --git a/lava-slave/tags/.empty b/lava-slave/tags/.empty new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/lava-slave/tags/.empty |