Revision 32
- Date:
- 2009/07/29 12:23:25
- Files:
Legend:
- Added
- Removed
- Modified
-
conf/debian-live/install.sh
1 #!/bin/sh 1 #!/bin/sh -x 2 2 3 source `dirname $0`/../.install.sh 4 5 depends vde2 6 sudo sh -c 'usermod -G vde2-net -a $SUDO_USER' 7 8 id $USER 9 3 10 dir=tftp/debian-live 4 11 5 test -d $dir &&\ 6 wget -nd -P $dir http://cdimage.debian.org/cdimage/release/current-live/i386/web/debian-live-501-i386-standard.squashfs &&\ 7 wget -nd -P $dir http://cdimage.debian.org/cdimage/release/current-live/i386/web/vmlinuz1 &&\ 8 wget -nd -P $dir http://cdimage.debian.org/cdimage/release/current-live/i386/web/initrd1.img &&\ 12 test -d $dir || 13 wget -m -nd -P $dir http://cdimage.debian.org/cdimage/release/current-live/i386/web/debian-live-501-i386-standard.squashfs &&\ 14 wget -m -nd -P $dir http://cdimage.debian.org/cdimage/release/current-live/i386/web/vmlinuz1 &&\ 15 wget -m -nd -P $dir http://cdimage.debian.org/cdimage/release/current-live/i386/web/initrd1.img &&\ 9 16 echo "download to $dir complete" 10 17 11