Update revoke-cleaner.pl

This commit is contained in:
nu11secur1ty 2023-01-17 15:48:32 +02:00 committed by GitHub
parent 1f6fd150a0
commit 74538dc0be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,8 +46,9 @@ print color('RESET');
chomp (my $username = <STDIN>); chomp (my $username = <STDIN>);
my $cleaner = `sed -i '/$username/d' $ENVPKI`; my $cleaner = `sed -i '/$username/d' $ENVPKI`;
print color('YELLOW') print color('YELLOW');
print"You clint configurations are...\n"; print"You clint configurations are...\n";
print color('RESET');
my $configs = `ls -all /etc/openvpn/client/`; my $configs = `ls -all /etc/openvpn/client/`;
print"$configs"; print"$configs";
exit 0; exit 0;