aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/patches
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-09-26 01:16:54 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-10-13 21:42:11 +0000
commit139aacf390d38b60f4fe4fd618a0bcf6b54b35cf (patch)
treeb39c1d19f5b66c94721e21b116aac6daee29f049 /mcp/patches
parent069c9252e2850ab13a47cc252d1f9e0e410b9305 (diff)
patch.sh: Exit on patch apply failure
Patches that fail to apply are silently skipped. Since retrying is not possible, deploy moves on, making the problem hard to observe. Change-Id: I3fe01cef6b245de53767a660b9b4fdfae0d5d0ff Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com> (cherry picked from commit bd0259e7bb5f045a1ba7958d79039848d062aad1)
Diffstat (limited to 'mcp/patches')
-rwxr-xr-xmcp/patches/patch.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcp/patches/patch.sh b/mcp/patches/patch.sh
index 6cd65fd10..b56ebb815 100755
--- a/mcp/patches/patch.sh
+++ b/mcp/patches/patch.sh
@@ -1,8 +1,9 @@
-#!/bin/bash
+#!/bin/bash -ex
if [ -r "$1" ]; then
while IFS=': ' read -r p_dest p_file; do
- [[ "${p_dest}" =~ $2 ]] && \
+ if [[ "${p_dest}" =~ $2 ]]; then
patch -fd "${p_dest}" -p1 < "/root/fuel/mcp/patches/${p_file}"
+ fi
done < "$1"
fi