#!/bin/sh
# $NetBSD: script7,v 1.1 2004/03/09 21:36:37 garbled Exp $

grep "^Subsystem.*sftp" /etc/ssh/sshd_config 2>&1 >/dev/null
if [ $? -eq 0 ]; then
	echo "yes"
	echo "no"
else
	echo "no"
	echo "yes"
fi
