diff --git a/CHANGELOG b/CHANGELOG index f13947d..443ce3c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.4] - 2023-12-13 + +### Changed + +- Removed `--controller` argument, since it's not in use. ## [1.2.3] - 2023-11-29 diff --git a/router_registration.py b/router_registration.py index ead5eb6..5c3e99d 100755 --- a/router_registration.py +++ b/router_registration.py @@ -240,7 +240,7 @@ def create_parser(): :return: A Namespace containing arguments """ - __version__ = '1.2.3' + __version__ = '1.2.4' parser = argparse.ArgumentParser() mgroup = parser.add_mutually_exclusive_group(required=True) @@ -268,8 +268,6 @@ def create_parser(): action='store_false', help='Skip applying fw rules', default=True) - parser.add_argument('--controller',type=str, - help='Hostname or IP of Openziti controller') parser.add_argument('--hostId', type=str, help='Salstack minion host id') parser.add_argument('--linkListener',