Browse Source

http backports

Bob Mottram 11 years ago
parent
commit
8432148dcf
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      install-freedombone.sh

+ 2
- 2
install-freedombone.sh View File

@@ -175,8 +175,8 @@ function enable_backports {
175 175
   if grep -Fxq "enable_backports" $COMPLETION_FILE; then
176 176
 	  return
177 177
   fi
178
-  if ! grep -Fxq "deb https://$DEBIAN_REPO/debian jessie-backports main" /etc/apt/sources.list; then
179
-    echo "deb https://$DEBIAN_REPO/debian jessie-backports main" >> /etc/apt/sources.list
178
+  if ! grep -Fxq "deb http://$DEBIAN_REPO/debian jessie-backports main" /etc/apt/sources.list; then
179
+    echo "deb http://$DEBIAN_REPO/debian jessie-backports main" >> /etc/apt/sources.list
180 180
   fi
181 181
   echo 'enable_backports' >> $COMPLETION_FILE
182 182
 }