-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop resolver scripts from signalling "not found".
This triggers a bug in radsecproxy. Don't use it for now.
- Loading branch information
Linus Nordberg
committed
Feb 18, 2012
1 parent
a0008e2
commit bd51eb6
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,4 +70,4 @@ if [ -n "${SERVERS}" ]; then | |
exit 0 | ||
fi | ||
|
||
exit 10 # No server found. | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,4 +48,4 @@ if test -n "${SERVERS}" ; then | |
exit 0 | ||
fi | ||
|
||
exit 10 # No server found. | ||
exit 0 |