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.
31 lines
421 B
31 lines
421 B
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
DESC="Préparation du système pour compatibilité DIRECT, COW et TGZ."
|
|
|
|
GUEST_NAME=sae103
|
|
|
|
run() {
|
|
|
|
. $VDN_PATH/bin/functions-scripts.sh
|
|
. $VDN_PATH/bin/functions-build.sh
|
|
|
|
setErrorHandler
|
|
echoStart
|
|
|
|
set -a
|
|
. $NETWORK_DIR/$GUEST_NAME.conf
|
|
set +a
|
|
|
|
env | egrep 'VDN|GUEST|HD|NET'
|
|
|
|
GUEST_DIR=$VDN_PATH/distribs/guests/direct/$GUEST_SYS
|
|
|
|
debootstrap
|
|
|
|
unsetErrorHandler
|
|
echoDone
|
|
}
|
|
|