Mettre à jour 'downloader.sh'

This commit is contained in:
Jeremy MANSON 2017-10-16 22:21:52 +02:00
parent 4aefe0d24e
commit 4cfdcdc3f7

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
WGETCMD="wget --no-cookies -P $CHROOT/" WGETCMD="wget --no-cookies -P $CHROOT/"
$WGETCMD $REPO/$STAGE3 $WGETCMD $REPO/$STAGE3 & export STAGE3_PID=$!
$WGETCMD $REPO/$SNAPSHOT $WGETCMD $REPO/$SNAPSHOT & export SNAPSHOT_PID=$!
$WGETCMD $REPO/kernel.tar.bz2 $WGETCMD $REPO/kernel.tar.bz2 & export KERNEL_PID=$!
$WGETCMD $REPO/modules.tar.bz2 $WGETCMD $REPO/modules.tar.bz2 & export MODULES_PID=$!