Merge 9c205b4fc8
into 9a3a10bf10
This commit is contained in:
commit
fd89c300a4
2
build.sh
2
build.sh
|
@ -253,7 +253,7 @@ for EXPORT_DIR in ${EXPORT_DIRS}; do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ -x ${BASE_DIR}/postrun.sh ]; then
|
if [ -x "${BASE_DIR}"/postrun.sh ]; then
|
||||||
log "Begin postrun.sh"
|
log "Begin postrun.sh"
|
||||||
cd "${BASE_DIR}"
|
cd "${BASE_DIR}"
|
||||||
./postrun.sh
|
./postrun.sh
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
---
|
||||||
version: '2'
|
version: '2'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
@ -5,6 +6,6 @@ services:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: sameersbn/apt-cacher-ng:latest
|
image: sameersbn/apt-cacher-ng:latest
|
||||||
ports:
|
ports:
|
||||||
- "3142:3142"
|
- "3142:3142"
|
||||||
volumes:
|
volumes:
|
||||||
- ./apt-cacher-ng:/var/cache/apt-cacher-ng
|
- ./apt-cacher-ng:/var/cache/apt-cacher-ng
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
log (){
|
log (){
|
||||||
date +"[%T] $*" | tee -a "${LOG_FILE}"
|
date +"[%T] $*" | tee -a "${LOG_FILE}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
# dependencies_check
|
# dependencies_check
|
||||||
# $@ Dependency files to check
|
# $@ Dependency files to check
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
IMG_SUFFIX="-lite"
|
IMG_SUFFIX="-lite"
|
||||||
if [ "${USE_QEMU}" = "1" ]; then
|
if [ "${USE_QEMU}" = "1" ]; then
|
||||||
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# shellcheck disable=SC2034
|
||||||
NOOBS_NAME="Raspbian Lite"
|
NOOBS_NAME="Raspbian Lite"
|
||||||
NOOBS_DESCRIPTION="A port of Debian with no desktop environment"
|
NOOBS_DESCRIPTION="A port of Debian with no desktop environment"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
IMG_SUFFIX=""
|
IMG_SUFFIX=""
|
||||||
if [ "${USE_QEMU}" = "1" ]; then
|
if [ "${USE_QEMU}" = "1" ]; then
|
||||||
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# shellcheck disable=SC2034
|
||||||
NOOBS_NAME="Raspbian"
|
NOOBS_NAME="Raspbian"
|
||||||
NOOBS_DESCRIPTION="A port of Debian with the Raspberry Pi Desktop"
|
NOOBS_DESCRIPTION="A port of Debian with the Raspberry Pi Desktop"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
IMG_SUFFIX="-full"
|
IMG_SUFFIX="-full"
|
||||||
if [ "${USE_QEMU}" = "1" ]; then
|
if [ "${USE_QEMU}" = "1" ]; then
|
||||||
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
export IMG_SUFFIX="${IMG_SUFFIX}-qemu"
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# shellcheck disable=SC2034
|
||||||
NOOBS_NAME="Raspbian Full"
|
NOOBS_NAME="Raspbian Full"
|
||||||
NOOBS_DESCRIPTION="A port of Debian with desktop and recommended applications"
|
NOOBS_DESCRIPTION="A port of Debian with desktop and recommended applications"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user