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

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.

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!