#!/bin/sh
#
# Copyright (C) 1995  Lars Berntzon
#
if rpcinfo -u localhost nisd >/dev/null 2>&1; then
    echo true
else
    echo false
fi
