Skip to content

Commit

Permalink
Release v0.2.2: Avoid serviceinstaller bugs on debian-like distros
Browse files Browse the repository at this point in the history
  • Loading branch information
CAM-Gerlach committed Oct 29, 2019
1 parent a3acc93 commit ffea5a5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Brokkr Changelog


## Version 0.2.2 (2019-10-28)

Bugfix release with the following changes:

* Avoid bug on debian-like platforms manually enabling ``ssshd`` that should already be started automatically
* Require `serviceinstaller` >= 0.1.1 to fix other similar install bugs and issues



## Version 0.2.1 (2019-09-24)

Bugfix release with the following changes:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pymodbus
pyserial
serviceinstaller>=0.1.1
toml
2 changes: 1 addition & 1 deletion src/brokkr/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version file."""

VERSION_INFO = (0, 2, 1)
VERSION_INFO = (0, 2, 2)
__version__ = '.'.join((str(version) for version in VERSION_INFO))
2 changes: 1 addition & 1 deletion src/brokkr/config/autossh.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
},
}

AUTOSSH_SERVICES_ENABLE = ("sshd.service", )
AUTOSSH_SERVICES_ENABLE = ()
AUTOSSH_SERVICES_DISABLE = ()
2 changes: 1 addition & 1 deletion src/brokkr/config/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
},
}

BROKKR_SERVICES_ENABLE = ("sshd.service", "systemd-timesyncd.service")
BROKKR_SERVICES_ENABLE = ("systemd-timesyncd.service", )
BROKKR_SERVICES_DISABLE = ("chronyd.service", "ntpd.service")

0 comments on commit ffea5a5

Please sign in to comment.