Skip to content

Commit 83f2839

Browse files
committed
Change download links to use https
Signed-off-by: Luca Carrogu <[email protected]>
1 parent 2f0f1de commit 83f2839

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

attributes/default.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
jq wget python-pip])
225225
# Download from debian repo (https://packages.debian.org/source/buster/gridengine)
226226
# because it contains fixes for known build issues
227-
default['cfncluster']['sge']['url'] = 'http://deb.debian.org/debian/pool/main/g/gridengine/gridengine_8.1.9+dfsg.orig.tar.gz'
227+
default['cfncluster']['sge']['url'] = 'https://deb.debian.org/debian/pool/main/g/gridengine/gridengine_8.1.9+dfsg.orig.tar.gz'
228228
default['cfncluster']['sge']['version'] = '8.1.9+dfsg-9'
229229
end
230230
end

files/amazon-2/sge_preinstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ curl --retry 3 --retry-delay 5 -o afif.key "https://db.debian.org/fetchkey.cgi?f
3131
gpg --no-default-keyring --keyring trustedkeys.gpg --import afif.key
3232

3333
# Following is the URL under which are stored the sources and binaries
34-
DEB_SGE_URL_BASE=http://deb.debian.org/debian/pool/main/g/gridengine
34+
DEB_SGE_URL_BASE=https://deb.debian.org/debian/pool/main/g/gridengine
3535

3636
# Download source archive
3737
SRC_ARCHIVE_OUTFILE=`url_base_file $TARBALL_URL`

recipes/intel_install.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
cwd node['cfncluster']['sources_dir']
3232
code <<-INTEL
3333
set -e
34-
yum-config-manager --add-repo http://yum.repos.intel.com/hpc-platform/el7/setup/intel-hpc-platform.repo
35-
rpm --import http://yum.repos.intel.com/hpc-platform/el7/setup/PUBLIC_KEY.PUB
34+
yum-config-manager --add-repo https://yum.repos.intel.com/hpc-platform/el7/setup/intel-hpc-platform.repo
35+
rpm --import https://yum.repos.intel.com/hpc-platform/el7/setup/PUBLIC_KEY.PUB
3636
yum -y install --downloadonly --downloaddir=/opt/intel/rpms intel-hpc-platform-*-#{node['cfncluster']['intelhpc']['version']}
3737
INTEL
3838
creates '/opt/intel/rpms'

recipes/sge_install.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
creates qmaster_bin_dir
7777
end
7878

79-
# Copy qconf utils (Downloaded from http://arc.liv.ac.uk/SGE/downloads/qconf_scripts.tar.gz)
79+
# Copy qconf utils (Downloaded from https://arc.liv.ac.uk/SGE/downloads/qconf_scripts.tar.gz)
8080
cookbook_file 'qconf_scripts.tar.gz' do
8181
path '/opt/sge/util/qconf_scripts.tar.gz'
8282
user 'root'

0 commit comments

Comments
 (0)