mirror of
https://github.com/webmin/webmin.git
synced 2026-06-23 04:20:32 +01:00
18 lines
236 B
Perl
Executable File
18 lines
236 B
Perl
Executable File
# uninstall.pl
|
|
# Called when webmin is uninstalled
|
|
|
|
require 'webmin-lib.pl';
|
|
|
|
sub module_uninstall
|
|
{
|
|
# Remove the link from /usr/sbin/webmin
|
|
my $bindir = "/usr/sbin";
|
|
my $lnk = $bindir."/webmin";
|
|
if (-l $lnk) {
|
|
unlink($lnk);
|
|
}
|
|
}
|
|
|
|
1;
|
|
|