summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/refclocks/query
blob: 07e11ccf2f7a8e5389609649b2559534c5f96873 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
echon "$1 (y/n) [$2] ? "
X=""
read X
if [ "$X" = "" ]; then
	X="$2"
fi
case "$X" in
    [yY]*) exit 0;;
  	*) exit 1;;
esac
OpenPOWER on IntegriCloud