Metadata-Version: 2.1
Name: systemd-service
Version: 1.8
Summary: Simple API to automate the creation of custom daemons for GNU/Linux.
Download-URL: https://github.com/UN-GCPDS/systemd-service
Author: Yeison Cardona
Author-email: yeisoneng@gmail.com
Maintainer: Yeison Cardona
Maintainer-email: yeisoneng@gmail.com
License: BSD-2-Clause
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Systemd-Service

Simple API to automate the creation of custom daemons for GNU/Linux.

![GitHub top language](https://img.shields.io/github/languages/top/un-gcpds/systemd-service)
![PyPI - License](https://img.shields.io/pypi/l/systemd-service)
![PyPI](https://img.shields.io/pypi/v/systemd-service)
![PyPI - Status](https://img.shields.io/pypi/status/systemd-service)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/systemd-service)
![GitHub last commit](https://img.shields.io/github/last-commit/un-gcpds/systemd-service)
![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/UN-GCPDS/systemd-service)
![Documentation Status](https://readthedocs.org/projects/systemd-service/badge/?version=latest)

A daemon is a service process that runs in the background and supervises the system or provides functionality to other processes. Traditionally, daemons are implemented following a scheme originating in SysV Unix. Modern daemons should follow a simpler yet more powerful scheme, as implemented by systemd.

**Systemd-Service** is a Python module to automate the creation of daemons under GNU/Linux environments.

## Install


```python
pip install -U systemd-service
```

## Handle daemons


```python
from systemd_service import Service

daemon = Service("stream_rpyc")

daemon.stop()     # Start (activate) the unit.
daemon.start()    # Stop (deactivate) the unit.
daemon.reload()   # Reload the unit.  
daemon.restart()  # Start or restart the unit.

daemon.enable()   # Enable the unit.
daemon.disable()  # Disable the unit.

daemon.remove()   # Remove the file unit.
```

This commands are uquivalent to the ```systemctl``` calls, for example run in terminal the folowing command: 
$ systemctl enable stream_rpyc
Can be running inside a Python environment with using ```systemd_service``` 


```python
from systemd_service import Service

daemon = Service("stream_rpyc")
daemon.enable()
```

## Creating services

Similar to the previous scripts, the services can be created using ```systemd_service```:


```python
daemon = Service("stream_rpyc")
daemon.create_service()
```

If the service must be initialized after other service


```python
daemon = Service("stream_rpyc")
daemon.create_service(after='ntpd')
```

## Creating timers

Defines a timer relative to when the machine was booted up:


```python
daemon = Service("stream_rpyc")
daemon.create_timer(on_boot_sec=15)
```

## Example

This module is useful when is combined with package scripts declaration in ```setup.py``` file:


```python
# setup.py

scripts=[
    "cmd/stream_rpyc",
]
```

The script could looks like:


```python
#!/usr/bin/env python

import sys

if sys.argv[-1] == "systemd":
    from systemd_service import Service
    daemon = Service("stream_rpyc")
    daemon.create_timer(on_boot_sec=10, after='network.target kafka.service')

else:
    from my_module.submodule import my_service
    print("Run 'stream_rpyc systemd' as superuser to create the daemon.")
    my_service()
```

Then the command can be called as a simple script but with the ```systemd``` argument the command will turn into a service.


```python
$ stream_rpyc
# Command executed normally
```


```python
$ stream_rpyc systemd
# Service created
```


