#!/bin/bash

if extrepo search thisrepodoesnotexist
then
	echo "failed: return value does not indicate failure"
else
	echo "ok"
fi
