From c7894497b2006a2124a37fb4262050605d2b1404 Mon Sep 17 00:00:00 2001 From: Dennis Groenen Date: Fri, 30 Nov 2012 19:49:40 +0100 Subject: [PATCH] also don't show the first-time installation warning for SSH logins --- debian/busybox-power.preinst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/debian/busybox-power.preinst b/debian/busybox-power.preinst index b71d7c2..551fe92 100644 --- a/debian/busybox-power.preinst +++ b/debian/busybox-power.preinst @@ -33,9 +33,10 @@ else esac fi -# Don't show the warning message when the user wants an unattended installation -# or if $DISPLAY is not set -if test -z "$DISPLAY" || test -e /tmp/.bbp-unattended; then exit 0; fi +# Don't show the warning message when the user wants an unattended installation, +# if $DISPLAY is not set or $SSH_TTY is set +if test -z "$DISPLAY" || test -n "$SSH_TTY" || test -e /tmp/.bbp-unattended + then exit 0; fi # Warning message case $ENVIRONMENT in -- 1.7.9.5