From a72af5e6fece0b10b917f714c5611f0ce419ebbd Mon Sep 17 00:00:00 2001 From: Jyrki Aaltonen Date: Tue, 14 May 2019 16:20:43 +0300 Subject: [PATCH] Add certificates support Change-Id: Ie272a20f4af32bb8ea677c620e5237155415b3f9 Signed-off-by: Jyrki Aaltonen --- dracut/modules/00netconfig/net_config_get_iso.sh | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/dracut/modules/00netconfig/net_config_get_iso.sh b/dracut/modules/00netconfig/net_config_get_iso.sh index a112688..28378af 100755 --- a/dracut/modules/00netconfig/net_config_get_iso.sh +++ b/dracut/modules/00netconfig/net_config_get_iso.sh @@ -17,9 +17,10 @@ source /usr/lib/installmedia-lib.sh -if [ -e /tmp/cloud_configs/network_config ];then +_CONFIGS_DIR="/tmp/cloud_configs" +if [ -e ${_CONFIGS_DIR}/network_config ];then warn "net_config_get_iso: Creating local network configurations, to download boot.iso." - source /tmp/cloud_configs/network_config + source ${_CONFIGS_DIR}/network_config if [ $VLAN ]; then warn "net_config_get_iso: Configuring VLAN network" @@ -75,9 +76,13 @@ if [ -e /tmp/cloud_configs/network_config ];then fi gw_ping_status=$? done - + + CERT_ARGS="" + if [ -f ${_CONFIGS_DIR}/clientcert.pem ]; then + CERT_ARGS="--certificate ${_CONFIGS_DIR}/clientcert.pem --private-key ${_CONFIGS_DIR}/clientkey.pem --ca-certificate ${_CONFIGS_DIR}/cacert.pem --no-check-certificate" + fi warn "Downloading Full ISO from URL: ${ISO_URL}" - if ! wget --connect-timeout 5 --read-timeout 100 --no-check-certificate ${ISO_URL} --progress=dot:giga -O $BOOTCD_LOCATION; then + if ! wget --connect-timeout 5 --read-timeout 100 ${CERT_ARGS} --no-check-certificate ${ISO_URL} --progress=dot:giga -O $BOOTCD_LOCATION; then warn "net_config_get_iso: Failed to download ISO from URL: ${ISO_URL}. Exiting installation." exit 1 fi -- 2.16.6