#!/usr/local/bin/perl # index.cgi # Shows a form for running a command, allowing the selection of a server or # group of servers to run it on. require './cluster-shell-lib.pl'; &ui_print_header(undef, $text{'index_title'}, "", "intro", 0, 1); print "
\n"; print "\n"; print "\n"; print "\n"; open(COMMANDS, $commands_file); chop(@commands = ); close(COMMANDS); if (@commands) { print "\n"; print "\n"; } %serv = map { $_, 1 } split(/ /, $config{'server'}); print "\n"; print "\n"; print "\n"; print "\n"; print "
$text{'index_cmd'}
$text{'index_old'}
$text{'index_server'}
\n"; &ui_print_footer("/", $text{'index'});