An open API service indexing awesome lists of open source software.

https://github.com/kleinpanic/systemd

A collection of custom systemd service files for automating tasks and managing system processes on my Linux setup. Includes services for personal utilities, monitoring, and automation. Easily deployable on Arch or Debian-based distributions.
https://github.com/kleinpanic/systemd

Last synced: 5 months ago
JSON representation

A collection of custom systemd service files for automating tasks and managing system processes on my Linux setup. Includes services for personal utilities, monitoring, and automation. Easily deployable on Arch or Debian-based distributions.

Awesome Lists containing this project

README

          

# Custom Systemd Services

This repository contains my custom **systemd** service files for managing various personal and system-wide tasks on my Linux setup.

## Features
- Custom services for automation and system monitoring
- Easily manageable and deployable service units
- Designed for Arch and Debian-based distributions

## Installation
To use a custom systemd service, copy the file to the appropriate directory and enable it:
```sh
sudo cp my-service.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable my-service
sudo systemctl start my-service
```

## Managing Services
- **Start a service:** `sudo systemctl start `
- **Stop a service:** `sudo systemctl stop `
- **Restart a service:** `sudo systemctl restart `
- **Check service status:** `sudo systemctl status `
- **Enable on boot:** `sudo systemctl enable `
- **Disable on boot:** `sudo systemctl disable `

## License
These service files are licensed under the MIT License.