Systemd services to prepare and run a distribution migration process.
The migration itself is started from a helper system such that the distribution to upgrade is offline and plays no role except for the contents of the root filesystem to migrate. The services in this project are implemented in the scope of this helper system(s).
Following migration helper systems exists:
The Python project uses tox
to setup a development environment
for the desired Python version.
The following procedure describes how to create such an environment:
-
Let tox create the virtual environment(s):
$ tox
-
Activate the virtual environment
$ source .tox/3/bin/activate
-
Install requirements inside the virtual environment:
$ pip install -U pip setuptools $ pip install -r .virtualenv.dev-requirements.txt
-
Let setuptools create/update your entrypoints
$ ./setup.py develop
Once the development environment is activated and initialized with the project required Python modules, you are ready to work.
In order to leave the development mode just call:
$ deactivate
To resume your work, change into your local Git repository and
run source .tox/3/bin/activate
again. Skip step 3 and 4 as
the requirements are already installed.