From 5a36e885ac03934f78b764a3becf047f9e8b3aec Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Wed, 18 Mar 2015 06:30:48 -0700 Subject: [PATCH] Don't allow start.sh to fail console start --- scripts/dockerimages/scripts/console.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/dockerimages/scripts/console.sh b/scripts/dockerimages/scripts/console.sh index c9ffe8b7..d6db7965 100755 --- a/scripts/dockerimages/scripts/console.sh +++ b/scripts/dockerimages/scripts/console.sh @@ -76,7 +76,8 @@ if ! grep -q "$(hostname)" /etc/hosts; then fi if [ -x /opt/rancher/bin/start.sh ]; then - /opt/rancher/bin/start.sh + echo Executing custom script + /opt/rancher/bin/start.sh || true fi exec respawn -f /etc/respawn.conf