pull/377/merge
Daniel Dickinson 2020-07-02 23:21:47 +08:00 committed by GitHub
commit fd89c300a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 23 additions and 3 deletions

View File

@ -253,7 +253,7 @@ for EXPORT_DIR in ${EXPORT_DIRS}; do
fi
done
if [ -x ${BASE_DIR}/postrun.sh ]; then
if [ -x "${BASE_DIR}"/postrun.sh ]; then
log "Begin postrun.sh"
cd "${BASE_DIR}"
./postrun.sh

View File

@ -1,3 +1,4 @@
---
version: '2'
services:
@ -5,6 +6,6 @@ services:
restart: unless-stopped
image: sameersbn/apt-cacher-ng:latest
ports:
- "3142:3142"
- "3142:3142"
volumes:
- ./apt-cacher-ng:/var/cache/apt-cacher-ng
- ./apt-cacher-ng:/var/cache/apt-cacher-ng

View File

@ -1,3 +1,5 @@
#!/bin/bash
log (){
date +"[%T] $*" | tee -a "${LOG_FILE}"
}

View File

@ -1,3 +1,5 @@
#!/bin/bash
# dependencies_check
# $@ Dependency files to check
#

View File

@ -1,3 +1,5 @@
#!/bin/bash
IMG_SUFFIX="-lite"
if [ "${USE_QEMU}" = "1" ]; then
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"

View File

@ -1,2 +1,5 @@
#!/bin/bash
# shellcheck disable=SC2034
NOOBS_NAME="Raspbian Lite"
NOOBS_DESCRIPTION="A port of Debian with no desktop environment"

View File

@ -1,3 +1,5 @@
#!/bin/bash
IMG_SUFFIX=""
if [ "${USE_QEMU}" = "1" ]; then
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"

View File

@ -1,2 +1,5 @@
#!/bin/bash
# shellcheck disable=SC2034
NOOBS_NAME="Raspbian"
NOOBS_DESCRIPTION="A port of Debian with the Raspberry Pi Desktop"

View File

@ -1,3 +1,5 @@
#!/bin/bash
IMG_SUFFIX="-full"
if [ "${USE_QEMU}" = "1" ]; then
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"

View File

@ -1,2 +1,5 @@
#!/bin/bash
# shellcheck disable=SC2034
NOOBS_NAME="Raspbian Full"
NOOBS_DESCRIPTION="A port of Debian with desktop and recommended applications"