NetBSD/share/sushi/network/yp/client/script
2001-08-01 08:04:26 +00:00

14 lines
257 B
Bash
Executable File

#!/bin/sh
# $NetBSD: script,v 1.2 2001/08/01 08:04:26 garbled Exp $
if [ -z "$1" ]; then
ypinit -c -l $2
else
ypinit -c -l $2 $1
fi
if [ "$?" = "0" ]; then
echo "YP/NIS Client initialization complete"
else
echo "YP/NIS Client initialization failed"
fi