Skip to content

Commit

Permalink
Merge pull request #11 from netfoundry/feature/handle_0.29.0_director…
Browse files Browse the repository at this point in the history
…y-structure

enforce executable for ziti binary
  • Loading branch information
emoscardini authored Jul 17, 2023
2 parents a18a361 + b152073 commit 6b7b989
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

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.1.0] - 2023-06-29
## [1.1.2] - 2023-07-17

### Added

- Added enforcing mode to executable for ziti binary

## [1.1.1] - 2023-06-29

### Fixed

Expand All @@ -18,4 +24,4 @@ All notable changes to this project will be documented in this file. The format

## [1.0.0] - 2023-01-09

- Initial version
- Initial version
3 changes: 2 additions & 1 deletion router_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ def download_bundle(ziti_version):
if member.name == "ziti":
logging.debug("Extracting: %s", member.name)
download_file.extract(member, "/opt/netfoundry/ziti/")
os.chmod('/opt/netfoundry/ziti/ziti', 0o755)
os.remove(file_name)
return None
if response.status_code == 404:
Expand Down Expand Up @@ -345,7 +346,7 @@ def main():
"""
Main logic
"""
__version__ = '1.1.1'
__version__ = '1.1.2'
# Change log
# See https://github.com/netfoundry/edge-router-upgrade/blob/main/CHANGELOG.md

Expand Down

0 comments on commit 6b7b989

Please sign in to comment.