5 lines
149 B
Bash
Executable file
5 lines
149 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
if [ ! -d "${ROOTFS_DIR}" ] || [ "${USE_QCOW2}" = "1" ]; then
|
|
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://deb.debian.org/debian/
|
|
fi
|