diff --git a/CHANGELOG.md b/CHANGELOG.md index 250657f..343525d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ 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.3.1] - 2023-11-01 +### Changed + +- Added salt-minion to journal command output list. + ## [1.3.0] - 2023-10-04 ### Changed diff --git a/dist/support_bundle b/dist/support_bundle index 2b6484e..7d7867d 100755 Binary files a/dist/support_bundle and b/dist/support_bundle differ diff --git a/support_bundle.py b/support_bundle.py index a95d2cc..24d9d35 100755 --- a/support_bundle.py +++ b/support_bundle.py @@ -322,7 +322,7 @@ def get_ziti_info(tmp_dir): ziti_files = [] # gather journal for ziti-router/tunnel - for program in ['ziti-router','ziti-tunnel','ziti-controller']: + for program in ['ziti-router','ziti-tunnel','ziti-controller','salt-minion']: log_file = tmp_dir + "/" + program + ".log" open_file = open(log_file,'w') subprocess.call(["journalctl", "-u", program, @@ -716,7 +716,7 @@ def main(): # main if __name__ == '__main__': try: - __version__ = '1.3.0' + __version__ = '1.3.1' # change log # https://github.com/netfoundry/edge-router-support-bundle/blob/main/CHANGELOG.md