mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
301 B
7 lines
301 B
#!/bin/bash -e |
|
# USAGE: scripts/download.sh |
|
|
|
wget -O /tmp/openldap-2.4.44.tgz ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.44.tgz |
|
sha512sum -c scripts/openldap-2.4.44.tgz.sha512 |
|
mv /tmp/openldap-2.4.44.tgz assets/openldap-2.4.44.tgz |
|
tar -zxvf assets/openldap-2.4.44.tgz -C assets
|
|
|