From 578a4dcac1a7a078d34b9eceb940136037a5ebc3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu>
Date: Tue, 13 Nov 2018 08:54:49 +0100
Subject: [PATCH] Added info on unattended-upgrades test failure.

---
 tests/test_apt.sh | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/tests/test_apt.sh b/tests/test_apt.sh
index 8e7a3a1f..2cb193f2 100755
--- a/tests/test_apt.sh
+++ b/tests/test_apt.sh
@@ -6,15 +6,14 @@ set -e
 PATH=/usr/bin:/bin:/usr/sbin:/sbin
 DEBIAN_FRONTEND=noninteractive
 
-echo "Testing apt-get install"
+echo "Testing apt-get install."
 
-echo "Clean repository"
+echo "Clean repository."
 apt-get clean
 
-#Testing if sl package exists and remove it
-
+# Testing if sl package exists and remove it
 if ( dpkg -s sl >/dev/null 2>&1 ); then
-    echo "Removing already installed testing package"
+    echo "Removing already installed testing package."
     apt-get remove -y sl
 fi
 
@@ -25,8 +24,9 @@ apt-get remove -y sl
 
 if [ ! -f /etc/apt/apt.conf.d/20auto-upgrades ]; then
     if [ ! -f /etc/apt/apt.conf.d/50unattended-upgrades ]; then
-        echo "Automatic security updates not enabled"
+        echo "Automatic security updates not enabled."
+        echo "Perhaps the unattended-upgrades package is not installed."
         exit 1
     fi
 fi
-echo "Automatic security updates enabled"
+echo "Automatic security updates enabled."
-- 
GitLab