Fix openeuler mirror problem
Currently, openeuler mirror doesn't work. It raises the error like: "Ignoring non-executable files: 00-setup-mirror.bash". This patch make the file executable to fix the mirror config problem. Change-Id: I39ec958f864c2ff5193ea6d8f85d672437367ca0
This commit is contained in:
parent
45544d5038
commit
65507dfe82
8
diskimage_builder/elements/openeuler-minimal/pre-install.d/00-setup-mirror.bash
Normal file → Executable file
8
diskimage_builder/elements/openeuler-minimal/pre-install.d/00-setup-mirror.bash
Normal file → Executable file
@ -1,3 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
||||
set -x
|
||||
fi
|
||||
set -eu
|
||||
set -o pipefail
|
||||
|
||||
if [ -n "${DIB_DISTRIBUTION_MIRROR:-}" ]; then
|
||||
# Only set the mirror for OS, everything, EPOL and update repositories,
|
||||
# The others (debuginfo and source) aren't mirrored since they do not exist on all mirrors
|
||||
|
Loading…
Reference in New Issue
Block a user