https://github.com/cha0s86/service-tools
Shell executables for enabling removing and checking services for runit systems.
https://github.com/cha0s86/service-tools
bash bash-script service services
Last synced: about 2 months ago
JSON representation
Shell executables for enabling removing and checking services for runit systems.
- Host: GitHub
- URL: https://github.com/cha0s86/service-tools
- Owner: cha0s86
- Created: 2024-10-28T07:52:48.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-15T20:36:47.000Z (over 1 year ago)
- Last Synced: 2025-09-07T01:34:41.823Z (10 months ago)
- Topics: bash, bash-script, service, services
- Language: Shell
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# service-tools
## Tools for managing services for linux distros using the runit init system
### Description
1. Link a service ```enable-service ```
2. Remove a service ```remove-service ```
3. Check services ```services```
### Installation
1. Make sure setup.sh is executable
```
sudo chmod +x setup.sh
```
2. Run setup.sh
```
sudo ./setup.sh
```
### Usage
1. Link a service
```
sudo enable-service
```
2. Remove a service
```
sudo remove-service
```
3. Check the services
```
sudo services
```
### Uninstalling
1. Run the uninstall script
```
sudo ./uninstall.sh
```
2. Remove to delete the folder with the contents also
```
cd ..
sudo rm -rf service-tools/
```
### That's it! Enjoy!