Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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.0.25] - 2025-05-28

### Changed

- Fixed bug with not running DNS if using host mode

## [1.0.24] - 2025-05-20

### Changed
Expand Down
4 changes: 2 additions & 2 deletions ziti_router_auto_enroll.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ def create_parser():

:return: A Namespace containing arguments
"""
__version__ = '1.0.24'
__version__ = '1.0.25'
parser = argparse.ArgumentParser()

add_general_arguments(parser, __version__)
Expand Down Expand Up @@ -2052,7 +2052,7 @@ def main(args):

# set up local dns for tunnel mode, if not skipping or host mode
if args.tunnelListener or args.autoTunnelListener:
if not args.skipDNS and ('host' not in args.tunnelListener):
if not args.skipDNS and (not args.tunnelListener or 'host' not in args.tunnelListener):
handle_dns(args)

# start ziti
Expand Down