From 36ff15b038abef56a3750b4ce2d1fc0951b5d019 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 25 May 2022 12:15:33 +0200 Subject: [PATCH] Fix container init (#72478) --- rootfs/init | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rootfs/init b/rootfs/init index bfc4802c858..0aa246c33ab 100755 --- a/rootfs/init +++ b/rootfs/init @@ -1,4 +1,4 @@ -#!/usr/bin/env bashio +#!/bin/sh -e # This is the first program launched at container start. # We don't know where our binaries are and we cannot guarantee @@ -43,7 +43,7 @@ fi # root, can be a normal user). exec s6-overlay-suexec \ - ' /package/admin/s6-overlay-@VERSION@/libexec/preinit' \ + ' /package/admin/s6-overlay/libexec/preinit' \ '' \ - /package/admin/s6-overlay-@VERSION@/libexec/stage0 \ + /package/admin/s6-overlay/libexec/stage0 \ "$@"