Make -c /etc/vpp/vppcfg.yaml the default, release 1.1.4

This commit is contained in:
2026-03-30 14:51:54 +02:00
parent 95cd074af6
commit 9efb3bd79f
2 changed files with 10 additions and 7 deletions

View File

@@ -1,3 +1,3 @@
"""Version information for vppcfg.""" """Version information for vppcfg."""
__version__ = "1.1.3" __version__ = "1.1.4"

View File

@@ -80,9 +80,10 @@ def main():
"-c", "-c",
"--config", "--config",
dest="config", dest="config",
required=True, required=False,
default="/etc/vpp/vppcfg.yaml",
type=str, type=str,
help="""YAML configuration file for vppcfg""", help="""YAML configuration file for vppcfg, default /etc/vpp/vppcfg.yaml""",
) )
dump_p = subparsers.add_parser( dump_p = subparsers.add_parser(
@@ -129,9 +130,10 @@ def main():
"-c", "-c",
"--config", "--config",
dest="config", dest="config",
required=True, required=False,
default="/etc/vpp/vppcfg.yaml",
type=str, type=str,
help="""YAML configuration file for vppcfg""", help="""YAML configuration file for vppcfg, default /etc/vpp/vppcfg.yaml""",
) )
plan_p.add_argument( plan_p.add_argument(
"--novpp", "--novpp",
@@ -179,9 +181,10 @@ def main():
"-c", "-c",
"--config", "--config",
dest="config", dest="config",
required=True, required=False,
default="/etc/vpp/vppcfg.yaml",
type=str, type=str,
help="""YAML configuration file for vppcfg""", help="""YAML configuration file for vppcfg, default /etc/vpp/vppcfg.yaml""",
) )
apply_p.add_argument( apply_p.add_argument(
"-j", "-j",