Serviceinstaller

Latest version: v0.2.0

Safety actively analyzes 619231 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 2

1.2.3b4

VERSION='VERSION_NUMBER'
Git branch to make the release from, e.g. 'main', 'master' or '1.x'
MAIN_BRANCH='BRANCH_NAME'
Prepare-release branch name
PREPARE_RELEASE_BRANCH=prepare-release-$VERSION
Release branch name, if a new major/minor release, e.g. '1.x' or '0.4.x'
RELEASE_BRANCH=$MAIN_BRANCH
Set mode to 'client' (if on a Pi) or 'server' (if on the central VPS)
MODE='MODE_NAME'


or, all in one line,

bash
VERSION='VERSION_NUMBER'; MAIN_BRANCH='BRANCH_NAME'; PREPARE_RELEASE_BRANCH=prepare-release-$VERSION; RELEASE_BRANCH=$MAIN_BRANCH; MODE='MODE_NAME'


* [ ] Update local repo

shell
git reset --hard && git switch $MAIN_BRANCH && git pull upstream $MAIN_BRANCH


* [ ] Clean local repo

shell
git clean -xdi


* [ ] Perform a quick local smoke-test of the final development version

shell
python -b -X dev -m pip install -e .
pylint serviceinstaller.py
python -I -bb -X dev -W error -c "import serviceinstaller; print(serviceinstaller.__version__)"
rm -f ../testservice/brokkr-hamma-default.service && python -I -bb -X dev -W error -m brokkr install-service -vvv --output-path ../testservice --platform linux --skip-enable
rm -f ../testservice/sindri-hamma-test.service && python -I -bb -X dev -W error -m sindri install-service -vvv --output-path ../testservice --platform linux --skip-enable --mode test
ls -lha ../testservice
less ../testservice/brokkr-hamma-default.service
less ../testservice/sindri-hamma-test.service



Commit

* [ ] Create a new branch for the release

shell
git switch -c $PREPARE_RELEASE_BRANCH


* [ ] Ensure docs and metadata are up to date and commit any changes

* [ ] [Release Guide](./RELEASE.md)
* [ ] [License](./LICENSE.txt)
* [ ] [Readme](./README.md)
* [ ] [Contributing Guide](./CONTRIBUTING.md)
* [ ] [MANIFEST.in](./MANIFEST.in)
* [ ] [setup.cfg](./setup.cfg) (Python/dep version reqs, classifiers, other metadata)
* [ ] [Roadmap](./ROADMAP.md)

* [ ] Update [`CHANGELOG.md`](./CHANGELOG.md) with the latest changes

* [ ] Update `__version__` in [`serviceinstaller.py`](./src/serviceinstaller.py) (set release version, remove `.dev0`)

shell
nano serviceinstaller.py


* [ ] Create release commit

shell
git commit -m "Release Serviceinstaller version $VERSION"


* [ ] Push the prepare-release branch to your fork

shell
git push -u origin $PREPARE_RELEASE_BRANCH


* [ ] Open a [pull request](https://github.com/CAM-Gerlach/serviceinstaller/pulls) for the branch


Test

* [ ] On the Pi/server, pull the prepare-release branch

shell
git reset --hard && git fetch --all && git switch $PREPARE_RELEASE_BRANCH


* [ ] Clean repository of old artifacts

shell
git clean -xdi


* [ ] Create and activate a fresh virtual environment for testing

shell
python -m venv test-env && source test-env/bin/activate


* [ ] Install/update the packaging stack

build
python -m pip install --upgrade pip
pip install --upgrade build setuptools wheel


* [ ] Build the distribution packages

build
python -bb -X dev -W error -m build


* [ ] Install from built wheel

shell
python -b -X dev -m pip install dist/serviceinstaller-$VERSION-py3-none-any.whl


* [ ] Check environment

shell
pip check; python -I -bb -X dev -W error -c "import serviceinstaller; print(serviceinstaller.__version__)"


* [ ] Test Serviceinstaller with Brokkr and Sindri


rm -f ../testservice/brokkr-hamma-default.service && python -I -bb -X dev -W error -m brokkr install-service -vvv --output-path ../testservice --platform linux --skip-enable
rm -f ../testservice/sindri-hamma-$MODE.service && python -I -bb -X dev -W error -m sindri install-service -vvv --output-path ../testservice --platform linux --skip-enable --mode $MODE
ls -lha ../testservice
less ../testservice/brokkr-hamma-default.service
less ../testservice/sindri-hamma-$MODE.service



Stage

* [ ] On the Pi/server(s), activate the production virtual environment

* [ ] Disable and stop Brokkr/Sindri services

shell
sudo systemctl disable brokkr-hamma-default sindri-hamma-$MODE && sudo systemctl stop brokkr-hamma-default sindri-hamma-$MODE


* [ ] Reinstall the package from the built wheel

shell
python -b -X dev -m pip install dist/serviceinstaller-$VERSION-py3-none-any.whl


* [ ] Reinstall service for Brokkr and Sindri, e.g.

shell
sudo /$PATH_TO_VENV/bin/python -I -bb -X dev -W error -m brokkr install-service -vvv --account $ACCOUNT
sudo /$PATH_TO_VENV/bin/python -I -bb -X dev -W error -m sindri install-service -vvv --mode $MODE --account $ACCOUNT --extra-args "$EXTRA_ARGS"


* [ ] Restart services

shell
sudo systemctl start brokkr-hamma-default sindri-hamma-$MODE


* [ ] Verify still running, no errors and functioning correctly after 60 seconds

shell
systemctl status brokkr-hamma-default sindri-hamma-$MODE



Build

* [ ] Activate the appropriate venv/conda environment

* [ ] Clean local repo

shell
git clean -xdi


* [ ] Update the packaging stack

shell
python -m pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager build setuptools twine wheel


* [ ] Build source distribution and wheel

shell
python -bb -X dev -W error -m build



Check

* [ ] Check Pylint

shell
pylint serviceinstaller.py


* [ ] Check distribution archives

shell
twine check --strict dist/*


* [ ] Check installation

shell
python -b -X dev -m pip install dist/serviceinstaller-$VERSION-py3-none-any.whl


* [ ] Check environment

shell
pip check; python -I -bb -X dev -W error -c "import serviceinstaller; print(serviceinstaller.__version__)"


* [ ] Check functionality with Brokkr and Sindri

shell
rm -f ../testservice/brokkr-hamma-default.service && python -I -bb -X dev -W error -m brokkr install-service -vvv --output-path ../testservice --platform linux --skip-enable
rm -f ../testservice/sindri-hamma-test.service && python -I -bb -X dev -W error -m sindri install-service -vvv --output-path ../testservice --platform linux --skip-enable --mode test
ls -lha ../testservice
less ../testservice/brokkr-hamma-default.service
less ../testservice/sindri-hamma-test.service



Release

* [ ] Upload distribution packages to PyPI

shell
twine upload dist/*


* [ ] Create release tag

shell
git tag -a v$VERSION -m "Serviceinstaller version $VERSION"


* [ ] Merge the prepare-release branch to `$MAIN_BRANCH`, or the pull request

shell
git switch $MAIN_BRANCH && git merge $PREPARE_RELEASE_BRANCH


* [ ] If new major or minor version, create release branch and push

shell
git switch -c $RELEASE_BRANCH && git push -u origin $RELEASE_BRANCH && git push upstream $RELEASE_BRANCH && git switch $MAIN_BRANCH



Finalize

* [ ] Update `__version__` in [`serviceinstaller.py`](./src/serviceinstaller.py) (increment to next, add `.dev0`)

shell
nano serviceinstaller.py


* [ ] Create a `back to work` commit with the next anticipated version on the branch

shell
git commit -m "Begin development of version $VERSION"


* [ ] Reinstall the development version locally in editable mode

shell
python -b -X dev -m pip install -e .


* [ ] Push new release commits and tags to `$MAIN_BRANCH`

shell
git push upstream $MAIN_BRANCH --follow-tags


* [ ] Create a [GitHub release](https://github.com/CAM-Gerlach/serviceinstaller/releases) from the tag with the changelog contents

* [ ] Open a [GitHub milestone](https://github.com/CAM-Gerlach/serviceinstaller/milestones) as needed for the next release


Deploy

* [ ] On the Pi/server, install the released version from PyPI

shell
pip install serviceinstaller


Or, pull the release branch, checkout the tag and editable-install

shell
git fetch --all && git switch $RELEASE_BRANCH && git checkout v$VERSION && pip install -e .



Cleanup

* [ ] On the Pi/server, remove the clean test virtual environment

shell
rm -rfd test-env


* [ ] Delete the prepare-release branch locally and on the Pi/server

shell
git branch -d $PREPARE_RELEASE_BRANCH


* [ ] Delete the prepare-release branch on the remote

shell
git push -d origin $PREPARE_RELEASE_BRANCH



Serviceinstaller Changelog

0.2.0

Stable release supporting Python 3.6-3.10.

Core features

* Allow execution on non-native platforms with the skip_enable parameter
* Add output_path parameter to main function to set a custom output dir
* Return actual output path for consumption by callers
* Defer logging configuration to callers rather than handling it internally

Bug fixes

* Fix bug creating parent directories one level too shallow
* Fix bug setting permissions/owner on parent directory, not service file
* Handle permission error with chown and being unsupported on current platform

Infrastructure

* Officially document support for Python 3.6-3.10 (up from only 3.6-3.8)
* Modernize packaging infrastructure for PEP 517 w/pyproject.toml & setup.cfg
* Revise Readme to reflect version support and other improvements

Under the hood

* Update pylint config with suite of plugins and remove unneeded disable
* Update Release Guide to use more modern and robust procedure
* Further minor related refactoring

0.1.4

Bugfix release to fix a critical packaging issue:

* Ensure the actual Python module is included in distribution packages

0.1.3

Bugfix release to address one minor issue:

* Fix issue with timeout being set too short for low-end systems (e.g. Pi Zero)

0.1.2

Bugfix release to fix various issues:

* Fix serious bug when filename, services_enable or services_disable is None
* Minor refinements to setup.py
* Ensure full project is pylint-clean and add .pylintrc

0.1.1

Minor bugfix release to fix a one significant bug on Debian:

* Don't add group name to avoid issues where group doesn't exist, e.g. Debian

Page 1 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.