From 4e69e5923bf2a8157ba4bdaf21dc3f85bea6163e Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Tue, 27 Nov 2018 10:28:49 +0100 Subject: [PATCH] Network insight, cleanup. -c vs --config for https://github.com/opnsense/core/issues/2964 --- src/opnsense/scripts/netflow/flowd_aggregate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/scripts/netflow/flowd_aggregate.py b/src/opnsense/scripts/netflow/flowd_aggregate.py index cb7b9fe33..1aa58fef5 100755 --- a/src/opnsense/scripts/netflow/flowd_aggregate.py +++ b/src/opnsense/scripts/netflow/flowd_aggregate.py @@ -186,7 +186,7 @@ class Main(object): if __name__ == '__main__': # parse arguments and load config parser = argparse.ArgumentParser() - parser.add_argument('-c', '--config', help='configuration yaml', default=None) + parser.add_argument('--config', '--config', help='configuration yaml', default=None) parser.add_argument('--console', dest='console', help='run in console', action='store_true') parser.add_argument('--profile', dest='profile', help='enable profiler', action='store_true') parser.add_argument('--repair', dest='repair', help='init repair', action='store_true')