summaryrefslogblamecommitdiffstats
path: root/builder/modules.d/dnbd3-rootfs/hooks/fetch-config.sh
blob: 6b2eb93dbc3c40444153fa07f223e2094768baed (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                   
                       
                
                                
                      
                   
                                                                 
           

              
                                
                       


                                                                      

                                                                      
                                                               


                                          

                                    
                   
 
                                                                
                 
       





                                                                            

                 

                                  
                                                                                                                                                                                                   
          
  



                                                                                                                                


                
                                              

                                                
                    

                                                     
           
#!/usr/bin/env bash
# -*- coding: utf-8 -*-
# region imports
source '/usr/lib/rebash/core.sh'
core.import exceptions
core.import logging
type emergency_shell >/dev/null 2>&1 || source /lib/dracut-lib.sh
# endregion
exceptions.try
{
logging.set_commands_level debug
logging.set_level debug
[[ "$SLX_LOG_FILE_PATH" == "" ]] && SLX_LOG_FILE_PATH=/var/log/openslx
logging.set_log_file "$SLX_LOG_FILE_PATH"

# NOTE: "getarg" raises an exception so deactivate exceptions for now.
exceptions.deactivate
configuration_file_name="$(getarg slx_configuration_filename=)"
if [ -z "$configuration_file_name" ]; then
    configuration_file_name='config'
fi
slx_server="$(getarg slxsrv=)"
slx_server_base="$(getarg slxbase=)"
exceptions.activate

logging.info "Download SLX configuration from: \"$slx_server\"."
IFS_backup="$IFS"
IFS=','
for TIMEOUT in 1 1 2 3; do
	if wget --timeout $TIMEOUT \
    "http://${slx_server#@}/${slx_server_base}/${configuration_file_name}" \
    --output-document '/etc/openslx'; then
		break
	fi
done
IFS="$IFS_backup"

if [[ ! -e "/etc/openslx" ]]; then
    logging.warn "Downloading OpenSLX configuration file from any of the servers \"${slx_server}\" at location \"${slx_server_base}/${configuration_file_name}\" failed. Return code: $return_code"
    exit 1
fi

# slxsrv overrides SLX_DNBD3_SERVERS if prefixed with @
[ "${slx_server#@}" != "${slx_server}" ] && sed -i "s/^SLX_DNBD3_SERVERS=.*/SLX_DNBD3_SERVERS='${slx_server#@}'/" "/etc/openslx"

}
exceptions.catch
{
    logging.error "$exceptions_last_traceback"
    emergency_shell "error in ${BASH_SOURCE[0]}"
}
# region vim modline
# vim: set tabstop=4 shiftwidth=4 expandtab:
# vim: foldmethod=marker foldmarker=region,endregion:
# endregion