├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── setup.py ├── sysdmanager ├── __init__.py └── systemd_manager.py └── tests ├── __init__.py ├── test_files ├── test_service.py └── test_service.service └── test_sysdmanager.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | build 4 | dist 5 | sysdmanager.egg-info -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include Makefile 2 | LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/setup.py -------------------------------------------------------------------------------- /sysdmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/sysdmanager/__init__.py -------------------------------------------------------------------------------- /sysdmanager/systemd_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/sysdmanager/systemd_manager.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_files/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/tests/test_files/test_service.py -------------------------------------------------------------------------------- /tests/test_files/test_service.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/tests/test_files/test_service.service -------------------------------------------------------------------------------- /tests/test_sysdmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emlid/systemd-manager/HEAD/tests/test_sysdmanager.py --------------------------------------------------------------------------------