mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
18 lines
264 B
Perl
Executable File
18 lines
264 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
require 'bandwidth-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
local $job = &find_cron_job();
|
|
if ($job) {
|
|
&lock_file(&cron::cron_file($job));
|
|
&cron::delete_cron_job($job);
|
|
&unlock_file(&cron::cron_file($job));
|
|
}
|
|
}
|
|
|
|
1;
|
|
|