diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2024-07-25 07:45:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-25 07:45:36 -0400 |
| commit | ecbbda49bccba7b18653133f9bfa81bd7ee58ac6 (patch) | |
| tree | f0b6ed17b7e13cbe1bcf928417460791b949db74 | |
| parent | 5957a4697f3b11d318309142a61a55c34c4f9c19 (diff) | |
| parent | 3c2529c783453a94437105e5570e7864c92d95e4 (diff) | |
Merge pull request #16468 from opensourcerouting/fix/243e27abccf8d02caabc6ae1ea758c4bdc3069e2_8.4
tools: Ignore errors for frr reload stuff
| -rw-r--r-- | tools/frrinit.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/frrinit.sh.in b/tools/frrinit.sh.in index ee10b89e52..b0579ca0c4 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 "$NEW_CONFIG_FILE" `echo $nsopt` - exit $? + exit 0 ;; *) |
