diff options
author | Joshua Ismael Haase Hernandez <hahj87@gmail.com> | 2011-05-19 11:26:54 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernandez <hahj87@gmail.com> | 2011-05-19 11:26:54 -0500 |
commit | 5636a97ca66e432cc59a0dcaf2b05398150b4e1f (patch) | |
tree | 2361b7d37de5ed06d5f8d0bc00d8b72bd1ebc054 /fullpkg | |
parent | a5a2d6019d8cdcc6f5c6173c5785292639e38caa (diff) |
is_banned should be false if no ban list is downloaded
Diffstat (limited to 'fullpkg')
-rwxr-xr-x | fullpkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ check_queue() { is_banned() { rsync -e ssh -aq $PARABOLAHOST:mips64el/ban $ban_file >/dev/null 2>&1 || { plain "Failed to get ban list" - return 0 + return 1 } grep -w $1 $ban_file >/dev/null 2>&1 return $? |