From 93a2aa78e12ce370dd994fd97ee7f6c0d38efd9b Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Wed, 24 Apr 2024 17:08:22 +0100 Subject: [PATCH] Use fully resolved libeatmydata.so in ld.so.preload --- .kitchen.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.kitchen.yml b/.kitchen.yml index f4a55180f..1727c072b 100644 --- a/.kitchen.yml +++ b/.kitchen.yml @@ -38,7 +38,7 @@ platforms: intermediate_instructions: - RUN /usr/bin/apt-get update -y - RUN /usr/bin/apt-get install -y eatmydata - - RUN echo libeatmydata.so >>/etc/ld.so.preload + - RUN echo /usr/lib/$(uname -m)-linux-gnu/libeatmydata.so >>/etc/ld.so.preload - name: ubuntu-22.04 driver: image: ghcr.io/test-kitchen/dokken/ubuntu-22.04 @@ -47,7 +47,7 @@ platforms: intermediate_instructions: - RUN /usr/bin/apt-get update -y - RUN /usr/bin/apt-get install -y eatmydata - - RUN echo libeatmydata.so >>/etc/ld.so.preload + - RUN echo /usr/lib/$(uname -m)-linux-gnu/libeatmydata.so >>/etc/ld.so.preload - name: debian-12 driver: image: ghcr.io/test-kitchen/dokken/debian-12 @@ -56,7 +56,7 @@ platforms: intermediate_instructions: - RUN /usr/bin/apt-get update -y - RUN /usr/bin/apt-get install -y eatmydata - - RUN echo libeatmydata.so >>/etc/ld.so.preload + - RUN echo /usr/lib/$(uname -m)-linux-gnu/libeatmydata.so >>/etc/ld.so.preload suites: - name: accounts -- 2.45.1