#!/bin/bash [ $(CreoleGet hapy_init_master) == non ] && exit 0 function error() { MSG=${1} echo "[ERROR][${MSG}]" exit 1 } function get_user_home() { HOMEDIR=$(getent passwd ${1} | cut -d ':' -f 6) echo ${HOMEDIR} } function get_one_auth() { CMD="cat" HOME=$(get_user_home oneadmin) FILE="${HOME}/.one/one_auth" ${CMD} ${FILE} } function runOneCmd() { local cmd=${1} local opt=${2} local auth=$(get_one_auth) $cmd ${opt} --user ${auth%:*} --password ${auth#*:} return ${?} } if [ $(CreoleGet activer_proxy_client 'non') = 'oui' ] then PROXY_SERVER=$(CreoleGet proxy_client_adresse) PROXY_PORT=$(CreoleGet proxy_client_port) PROXY_OPT="--proxy http://${PROXY_SERVER}:${PROXY_PORT}" fi DISKSIZE=$(CreoleGet hapy_init_master_disk_size) DISKNAME="DSK-${DISKSIZE}-Go" DISKDESC="Disque vide de ${DISKSIZE} Go" VERSIONISO=$(CreoleGet hapy_init_master_iso_version) MAJORVERSION=${VERSIONISO:0:3} POINT_RELEASE=$(eole-iso ${PROXY_OPT} --release ${VERSIONISO} get-last-point-release) ISONAME=$(eole-iso ${PROXY_OPT} --release ${VERSIONISO} get-iso-name) ISODESC="Image ISO EOLE ${POINT_RELEASE} 64 bits" ISOURL=$(eole-iso ${PROXY_OPT} --release ${VERSIONISO} get-iso-url) TMPLNAME="install-eole-${POINT_RELEASE}-amd64" TMPLDESC="Modèle de VM permettant d'installer un module EOLE ${POINT_RELEASE} 64 bits (non persistente)" #echo "########### suppr ${DISKNAME} ###############" #oneimage delete ${DISKNAME} #echo #echo "########### suppr ${ISONAME} ###################" #oneimage delete ${ISONAME} #echo #echo "########### suppr ${TMPLNAME} ###################" #onetemplate delete ${TMPLNAME} #echo #***************************************************** # DISQUE VIDE #***************************************************** if ! runOneCmd "oneimage" "show ${DISKNAME}" &>/dev/null then echo "***** Création de ${DISKNAME} *****" ## Attention oneimage create --datastore ne fonctionne pas dans runOneCmd ... auth=$(get_one_auth) oneimage create --datastore $(CreoleGet one_ds_image_name) \ --name ${DISKNAME} --type DATABLOCK --description "${DISKDESC}" \ --size $((${DISKSIZE}*1024)) --prefix vd --driver qcow2 --user ${auth%:*} --password ${auth#*:} runOneCmd "oneimage" "chtype ${DISKNAME} OS" else echo "***** ${DISKNAME} existe déjà *****" fi echo #***************************************************** # Image ISO EOLE Latest Stable #***************************************************** if ! runOneCmd "oneimage" "show ${ISONAME}" &>/dev/null then echo -ne "***** Création de l'image ${ISONAME} *****\n\n" FILE=$(mktemp) cat > ${FILE} </dev/null then echo "***** Création de ${TMPLNAME} *****" FILE=$(mktemp) cat > ${FILE} <