From fb1104d60ec85e3698395e7874a2d670ab39a41d Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Tue, 30 Oct 2018 09:06:02 +0100 Subject: lava-slave/Dockerfile: Remade extra_actions working extra_actions is broken since commit f3d53d64922d ("lava-slave/Dockerfile: copy all scripts in one actions") It is not anymore copied in /root but in /usr/local/bin/ --- lava-slave/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lava-slave') diff --git a/lava-slave/Dockerfile b/lava-slave/Dockerfile index 7b811bf..e93764d 100644 --- a/lava-slave/Dockerfile +++ b/lava-slave/Dockerfile @@ -41,7 +41,7 @@ COPY devices/ /root/devices/ COPY tags/ /root/tags/ COPY deviceinfo/ /root/deviceinfo/ -RUN if [ -x /root/extra_actions ] ; then /root/extra_actions ; fi +RUN if [ -x /usr/local/bin/extra_actions ] ; then /usr/local/bin/extra_actions ; fi RUN apt-get -y install screen openssh-server RUN ssh-keygen -q -f /root/.ssh/id_rsa -- cgit 1.2.3-korg