您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

11 行
330 B

  1. #!/bin/bash -e
  2. if [ "$RELEASE" != "bullseye" ]; then
  3. echo "WARNING: RELEASE does not match the intended option for this branch."
  4. echo " Please check the relevant README.md section."
  5. fi
  6. if [ ! -d "${ROOTFS_DIR}" ] || [ "${USE_QCOW2}" = "1" ]; then
  7. bootstrap ${RELEASE} "${ROOTFS_DIR}" http://deb.debian.org/debian/
  8. fi