Gentoo Archives: gentoo-commits

From: Matthew Marchese <maffblaster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] sites/www:master commit in: bin/
Date: Fri, 28 Jul 2017 04:15:12
Message-Id: 1501214019.cdacc9aaf60c8a4cea9500b81db6e57a75c0791d.maffblaster@gentoo
1 commit: cdacc9aaf60c8a4cea9500b81db6e57a75c0791d
2 Author: Matthew Marchese <maffblaster <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 27 20:44:38 2017 +0000
4 Commit: Matthew Marchese <maffblaster <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 28 03:53:39 2017 +0000
6 URL: https://gitweb.gentoo.org/sites/www.git/commit/?id=cdacc9aa
7
8 Use HTTPS for planet RSS feed download.
9
10 Signed-off-by: Matthew Marchese <maffblaster <AT> gentoo.org>
11
12 bin/update-planet.sh | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/bin/update-planet.sh b/bin/update-planet.sh
16 index 5a410cb..46a9a3c 100755
17 --- a/bin/update-planet.sh
18 +++ b/bin/update-planet.sh
19 @@ -1,6 +1,6 @@
20 #!/bin/bash
21
22 echo -n 'Updating Planet information...'
23 -timeout 120 wget -T 60 'http://planet.gentoo.org/rss20.xml' -O _data/planet.xml.tmp 2>/dev/null
24 +timeout 120 wget -T 60 'https://planet.gentoo.org/rss20.xml' -O _data/planet.xml.tmp 2>/dev/null
25 [ $? -eq 0 ] && mv _data/planet.xml.tmp _data/planet.xml
26 echo 'done.'