diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2018-10-30 09:06:02 +0100 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2018-11-02 10:26:57 +0100 |
commit | fb1104d60ec85e3698395e7874a2d670ab39a41d (patch) | |
tree | ff71929a52bce3bd5e7197c02935a4dff0d9d995 | |
parent | ed1055f97b5867e2c6683299afb6e7671982fa15 (diff) |
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/
-rw-r--r-- | lava-slave/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |