Added the same --user and --group options to lemonldap-ng-cli

This commit is contained in:
Alex Kelly 2021-07-15 11:38:35 -04:00
parent da87299b1d
commit 115725dae5

View File

@ -3,6 +3,15 @@
use warnings;
use strict;
use POSIX;
use Getopt::Long;
our $opt_user = 'apache';
our $opt_group = 'apache';
GetOptions (
"user=s" => \$opt_user,
"group=s" => \$opt_group
)
or die("Error in command line arguments\n");
my $action;