From 8f8b50ecfeb102dad507302763a66f37673b4516 Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Mon, 5 Apr 2021 16:38:06 -0700 Subject: [PATCH] adjust_apache.pl: fixes GetOpt arguments to behave better under F24 and earlier Signed-off-by: Jed Reynolds --- adjust_apache.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/adjust_apache.pl b/adjust_apache.pl index 6af249b8..3f233c64 100755 --- a/adjust_apache.pl +++ b/adjust_apache.pl @@ -35,9 +35,9 @@ my $usage = "$0 : "; GetOptions( - "-h|--help" => \$do_help, - "-d|--debug" => \$debug, - "-a|--auto|--automatic" => \$do_automatic, + "h|help" => \$do_help, + "d|debug" => \$debug, + "a|auto|automatic" => \$do_automatic, ) || die($usage); if ($do_help) {