Skip to content

Commit

Permalink
Merge branch '5.9.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
lunkwill42 committed Mar 20, 2024
2 parents fc42a65 + 9ed8dae commit 2c74d73
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
This changelog format was introduced in NAV 5.4.0. Older changelogs can be
found in the [HISTORY](HISTORY) file.

## [Unreleased]

### Fixed

- Avoid running command line scripts twice on every invocation ([#2877](https://github.com/Uninett/nav/issues/2877), [#2878](https://github.com/Uninett/nav/pull/2878))

## [5.9.1] - 2024-03-15

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ navdf = "nav.bin.navdf:main"
navdump = "nav.bin.navdump:main"
naventity = "nav.bin.naventity:main"
navoidverify = "nav.bin.navoidverify:main"
navpgdump = "nav.bin.navpgdump:main"
navpgdump = "nav.pgdump:main"
navsnmp = "nav.bin.navsnmp:main"
navstats = "nav.bin.navstats:main"
navsyncdb = "nav.bin.navsyncdb:main"
navsyncdb = "nav.pgsync:main"
navsynctypes = "nav.bin.navsynctypes:main"
navtopology = "nav.bin.navtopology:main"
navuser = "nav.bin.navuser:main"
Expand Down
5 changes: 0 additions & 5 deletions python/nav/bin/navpgdump.py

This file was deleted.

4 changes: 0 additions & 4 deletions python/nav/bin/navsyncdb.py

This file was deleted.

3 changes: 2 additions & 1 deletion python/nav/bin/navtopology.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@

from nav.topology.detector import main

main()
if __name__ == '__main__':
main()

0 comments on commit 2c74d73

Please sign in to comment.