#!/bin/sh -e

ret=$(os-prober)

if [ -z "$ret" ]; then
    exit 1
fi

exit 0
