mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
15 lines
286 B
Perl
Executable File
15 lines
286 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# delete_pam.cgi
|
|
# Delete a PAM service
|
|
|
|
require './pam-lib.pl';
|
|
&ReadParse();
|
|
@pam = &get_pam_config();
|
|
$f = $pam[$in{'idx'}]->{'file'};
|
|
&lock_file($f);
|
|
unlink($f);
|
|
&unlock_file($f);
|
|
&webmin_log("delete", "pam", $pam[$in{'idx'}]->{'name'}, $pam);
|
|
&redirect("");
|
|
|