From c05f1bddd21d50a2891fc8dfb4b01ceaa4fc2b0a Mon Sep 17 00:00:00 2001 From: Pierre-Louis Bonicoli Date: Wed, 26 Mar 2014 02:21:08 +0100 Subject: [PATCH] [fix] debconf: don't fail when noninteractive frontend is used --- debian/alternc.config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/alternc.config b/debian/alternc.config index c5e3aaf7..c1fce570 100644 --- a/debian/alternc.config +++ b/debian/alternc.config @@ -231,7 +231,7 @@ while [ "$QUEST_STATE" != 0 -a "$QUEST_STATE" != 14 ]; do db_get alternc/alternc_html if [ -z "$RET" ]; then db_set alternc/alternc_html $ALTERNC_HTML - db_input high alternc/alternc_html + db_input high alternc/alternc_html || true fi db_get alternc/alternc_html @@ -266,14 +266,14 @@ while [ "$QUEST_STATE" != 0 -a "$QUEST_STATE" != 14 ]; do db_get alternc/alternc_mail if [ -z "$RET" ]; then db_set alternc/alternc_mail $ALTERNC_MAIL - db_input high alternc/alternc_mail + db_input high alternc/alternc_mail || true fi ;; 13) db_get alternc/alternc_logs if [ -z "$RET" ];then db_set alternc/alternc_logs $ALTERNC_LOGS - db_input high alternc/alternc_logs + db_input high alternc/alternc_logs || true fi ;; esac