summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2023-07-12 15:11:58 -0400
committerGitHub <noreply@github.com>2023-07-12 15:11:58 -0400
commit89bbdb5fdbe258ef9df5ed14f56305093de07e79 (patch)
tree0b3849718e1abf46c48d9d323e7140e61dfbdd60 /tools
parentc362e274b22eb411793ab93a50a9ed6e7bc67889 (diff)
parent243e27abccf8d02caabc6ae1ea758c4bdc3069e2 (diff)
Merge pull request #13891 from opensourcerouting/fix/ignore_errors_from_frr-reload.py
tools: Ignore errors for frr reload stuff
Diffstat (limited to 'tools')
-rw-r--r--tools/frrinit.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/frrinit.sh.in b/tools/frrinit.sh.in
index 42adefb9ea..428d57c55b 100644
--- a/tools/frrinit.sh.in
+++ b/tools/frrinit.sh.in
@@ -123,7 +123,7 @@ reload)
NEW_CONFIG_FILE="${2:-$C_PATH/frr.conf}"
[ ! -r $NEW_CONFIG_FILE ] && log_failure_msg "Unable to read new configuration file $NEW_CONFIG_FILE" && exit 1
"$RELOAD_SCRIPT" --reload --bindir "$B_PATH" --confdir "$C_PATH" --rundir "$V_PATH" "$NEW_CONFIG_FILE" `echo $nsopt`
- exit $?
+ exit 0
;;
*)