#!/usr/local/bin/perl # edit_sync.cgi # Display options for the automatic setting up of SSH for new users require './sshd-lib.pl'; &ui_print_header(undef, $text{'sync_title'}, ""); print "
\n"; print "$text{'sync_desc'}

\n"; $sp = " " x 5; print &ui_checkbox("create", 1, $text{'sync_create'}, $config{'sync_create'}), "
\n"; print $sp,&ui_checkbox("auth", 1, $text{'sync_auth'}, $config{'sync_auth'}), "
\n"; print $sp,&ui_checkbox("pass", 1, $text{'sync_pass'}, $config{'sync_pass'}), "
\n"; print $sp,$text{'sync_type'}," ", &ui_select("type", $config{'sync_type'}, [ [ "", $text{'sync_auto'} ], [ "rsa" ], [ "dsa" ], [ "rsa1" ] ]),"
\n"; print "

\n"; &ui_print_footer("", $text{'index_return'});