Skip to content

Commit

Permalink
Allow the installer to continue working if the repo public key is not…
Browse files Browse the repository at this point in the history
… available
  • Loading branch information
mackhendricks authored and root committed May 27, 2021
1 parent 5713f32 commit a8c0496
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dsiprouter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1018,9 +1018,11 @@ configureSystemRepos() {
true
fi

if (( $? != 0 )); then
if (( $? == 1 )); then
printerr 'Could not configure system repositories'
cleanupAndExit 1
elif (( $? >= 100 )); then
printwarn 'Some issue(s) with system repositories'
else
printdbg 'System repositories configured successfully'
touch ${DSIP_SYSTEM_CONFIG_DIR}/.reposconfigured
Expand Down

0 comments on commit a8c0496

Please sign in to comment.