{ # To disable tunneled clear text passwords, change to no here! }
PasswordAuthentication { 
    local %services;
    $services{'sshd'} = $sshd;

    my $PasswordAuthentication =
	db_get_prop(\%services, "sshd", "PasswordAuthentication");

    $PasswordAuthentication = "no" unless defined $PasswordAuthentication;

    $OUT = ($PasswordAuthentication eq "yes") ? "yes" : "no";
}
