Merge branch 'next' of sneak/docker-ubuntumirror into master
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
commit
be0d3cb859
|
@ -16,17 +16,24 @@ if [[ "$UBUNTU_ENABLE_SOURCE_MIRRORING" != "false" ]]; then
|
||||||
SOURCEOPT="--source"
|
SOURCEOPT="--source"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
debmirror \
|
DONE=0
|
||||||
-a ${UBUNTU_MIRROR_ARCHITECTURES} \
|
|
||||||
-s ${UBUNTU_MIRROR_CATEGORIES} \
|
|
||||||
-h ${UBUNTU_MIRROR_UPSTREAM} \
|
|
||||||
-d ${UBUNTU_MIRROR_PROJECTS} \
|
|
||||||
$SOURCEOPT \
|
|
||||||
--ignore-small-errors \
|
|
||||||
-r /ubuntu \
|
|
||||||
--getcontents \
|
|
||||||
--progress \
|
|
||||||
--method=http \
|
|
||||||
$DST/ubuntu
|
|
||||||
|
|
||||||
chmod -R a+rX $DST
|
while [[ $DONE -eq 0 ]]; do
|
||||||
|
debmirror \
|
||||||
|
-a ${UBUNTU_MIRROR_ARCHITECTURES} \
|
||||||
|
-s ${UBUNTU_MIRROR_CATEGORIES} \
|
||||||
|
-h ${UBUNTU_MIRROR_UPSTREAM} \
|
||||||
|
-d ${UBUNTU_MIRROR_PROJECTS} \
|
||||||
|
$SOURCEOPT \
|
||||||
|
--ignore-small-errors \
|
||||||
|
-r /ubuntu \
|
||||||
|
--getcontents \
|
||||||
|
--progress \
|
||||||
|
--method=http \
|
||||||
|
$DST/ubuntu
|
||||||
|
if [[ $? -eq 0 ]]; then
|
||||||
|
DONE=1
|
||||||
|
fi
|
||||||
|
chmod -R a+rX $DST
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
|
@ -3,11 +3,14 @@ worker_processes auto;
|
||||||
|
|
||||||
pid /var/run/nginx.pid;
|
pid /var/run/nginx.pid;
|
||||||
|
|
||||||
|
error_log /dev/stdout info;
|
||||||
|
|
||||||
events {
|
events {
|
||||||
worker_connections 1024;
|
worker_connections 1024;
|
||||||
}
|
}
|
||||||
|
|
||||||
http {
|
http {
|
||||||
|
access_log /dev/stdout;
|
||||||
include /etc/nginx/mime.types;
|
include /etc/nginx/mime.types;
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue