Revert "Add config option to allow auto-refresh of Running Processes module"

This reverts commit a379c1f3ed.
This commit is contained in:
Ilia Ross
2025-01-16 00:07:05 +02:00
parent a379c1f3ed
commit d10bd3a601
5 changed files with 0 additions and 5 deletions

View File

@ -2,6 +2,5 @@ line1=Configurable options,11
default_mode=Default process list style,4,last-Last chosen,tree-Process tree,user-Order by user,size-Order by size,cpu-Order by CPU,search-Search form,run-Run form
cut_length=Characters to truncate commands to,3,Unlimited
hide_self=Hide Webmin processes from list?,1,1-Yes,0-No
refresh=Time between page auto-refresh,3,Never
line2=System configuration,11
ps_style=PS command output style,1,sysv-SYSV,linux-Linux,hpux-HPUX,freebsd-FreeBSD,macos-MacOS,openbsd-OpenBSD

View File

@ -2,7 +2,6 @@
# index_cpu.cgi
require './proc-lib.pl';
print "Refresh: $config{'refresh'}\r\n" if ($config{'refresh'});
&ui_print_header(undef, $text{'index_title'}, "", "cpu", !$no_module_config, 1);
# Show CPU load and type

View File

@ -2,7 +2,6 @@
# index_cpu.cgi
require './proc-lib.pl';
print "Refresh: $config{'refresh'}\r\n" if ($config{'refresh'});
&ui_print_header(undef, $text{'index_title'}, "", "size", !$no_module_config, 1);
&index_links("size");

View File

@ -3,7 +3,6 @@
# Display a list of all existing processes
require './proc-lib.pl';
print "Refresh: $config{'refresh'}\r\n" if ($config{'refresh'});
&ui_print_header(undef, $text{'index_title'}, "", "tree", !$no_module_config, 1);
&index_links("tree");

View File

@ -2,7 +2,6 @@
# index_user.cgi
require './proc-lib.pl';
print "Refresh: $config{'refresh'}\r\n" if ($config{'refresh'});
&ui_print_header(undef, $text{'index_title'}, "", "user", !$no_module_config, 1);
&index_links("user");