Browse Source

Add notification line for key installation.

Raphael Schneeberger 7 years ago
parent
commit
664f3a1185
2 changed files with 8 additions and 0 deletions
  1. 4 0
      install/hst-install-debian.sh
  2. 4 0
      install/hst-install-ubuntu.sh

+ 4 - 0
install/hst-install-debian.sh

@@ -519,6 +519,10 @@ check_result $? 'apt-get upgrade failed'
 # Define apt conf location
 apt=/etc/apt/sources.list.d
 
+# Install Key Notification
+echo
+echo "Install required repository keys..."
+
 # Installing nginx repo
 echo "deb http://nginx.org/packages/mainline/$VERSION/ $codename nginx" \
     > $apt/nginx.list

+ 4 - 0
install/hst-install-ubuntu.sh

@@ -490,6 +490,10 @@ check_result $? 'apt-get upgrade failed'
 # Define apt conf location
 apt=/etc/apt/sources.list.d
 
+# Install Key Notification
+echo
+echo "Install required repository keys..."
+
 # Installing nginx repo
 echo "deb http://nginx.org/packages/mainline/$VERSION/ $codename nginx" \
     > $apt/nginx.list