├── .gitignore ├── README.md ├── python_demo_service.py └── python_demo_service.service /.gitignore: -------------------------------------------------------------------------------- 1 | /venv/ 2 | 3 | .*.swp 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torfsen/python-systemd-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /python_demo_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torfsen/python-systemd-tutorial/HEAD/python_demo_service.py -------------------------------------------------------------------------------- /python_demo_service.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torfsen/python-systemd-tutorial/HEAD/python_demo_service.service --------------------------------------------------------------------------------