#!/bin/sh

# Reply 0 if multinode, 1 otherwise

set -e

if [ -e /etc/supply-baremetal/other-hosts.d ] && [ -n ""$(ls /etc/supply-baremetal/other-hosts.d) ] ; then
	exit 0
else
	exit 1
fi
