mirror of
https://github.com/webmin/webmin.git
synced 2026-02-07 16:02:14 +00:00
10 lines
211 B
Perl
Executable File
10 lines
211 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Delete all URLs from the cache
|
|
|
|
require './webmin-lib.pl';
|
|
|
|
&system_logged("rm -f ".quotemeta($main::http_cache_directory)."/*");
|
|
&webmin_log("clearcache");
|
|
&redirect("edit_proxy.cgi");
|
|
|