mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
17 lines
319 B
Perl
Executable File
17 lines
319 B
Perl
Executable File
|
|
do 'cron-lib.pl';
|
|
|
|
sub feedback_files
|
|
{
|
|
opendir(DIR, $config{'cronfiles_dir'});
|
|
local @rv = map { "$config{'cronfiles_dir'}/$_" } grep { !/^\./ } readdir(DIR);
|
|
closedir(DIR);
|
|
opendir(DIR, $config{'cron_dir'});
|
|
push(@rv, map { "$config{'cron_dir'}/$_" } grep { !/^\./ } readdir(DIR));
|
|
closedir(DIR);
|
|
return @rv;
|
|
}
|
|
|
|
1;
|
|
|