0.2.1 #2
19
README.md
19
README.md
|
@ -1,6 +1,12 @@
|
||||||
# Void Service Control (VSC)
|
# Void Service Control (VSC)
|
||||||
## A simple script that will allow you to manage runit services in Void Linux
|
## A simple script that will allow you to manage runit services in Void Linux
|
||||||
|
|
||||||
|
## Available on:
|
||||||
|
[![](https://cloud.orudo.ru/apps/files_sharing/publicpreview/RpcoJB8FwgNmqHC?file=/&fileId=48757&x=1920&y=1200&a=true&etag=10effec96382ba8b9fc181a5c1c85012)](https://git.orudo.ru/trueold89/void-service-control)
|
||||||
|
[![](https://cloud.orudo.ru/s/D8xtkTS8ZBCq8fC/download/GH.png)](https://github.com/Trueold89/void-service-control)
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
- [Installation](#install)
|
- [Installation](#install)
|
||||||
- [Usage](#usage)
|
- [Usage](#usage)
|
||||||
- [Build from sources](#build-from_sources)
|
- [Build from sources](#build-from_sources)
|
||||||
|
@ -14,7 +20,7 @@
|
||||||
From [git.orudo.ru](https://git.orudo.ru/trueold89/void-service-control/releases):
|
From [git.orudo.ru](https://git.orudo.ru/trueold89/void-service-control/releases):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ pip install https://git.orudo.ru/trueold89/void-service-control/releases/download/0.2/VoidServiceControl-0.2.tar.gz
|
$ pip install https://git.orudo.ru/trueold89/void-service-control/releases/download/0.2.1/VoidServiceControl-0.2.1.tar.gz
|
||||||
```
|
```
|
||||||
or pypi
|
or pypi
|
||||||
|
|
||||||
|
@ -26,6 +32,12 @@ $ pip install void-service-control
|
||||||
|
|
||||||
**Or by downloading the pre-built binary / xbps-package from the **[releases](https://git.orudo.ru/trueold89/void-service-control/releases)** page**
|
**Or by downloading the pre-built binary / xbps-package from the **[releases](https://git.orudo.ru/trueold89/void-service-control/releases)** page**
|
||||||
|
|
||||||
|
#### Install [.xbps package](https://git.orudo.ru/trueold89/void-service-control/releases):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
& xbps-rindex -a *.xbps && xbps-install --repository=$PWD void-service-control
|
||||||
|
```
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
### Usage:
|
### Usage:
|
||||||
|
@ -42,6 +54,11 @@ $ vsc e <service_name>
|
||||||
$ vsc d <service_name>
|
$ vsc d <service_name>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Action with multiple services:**
|
||||||
|
```bash
|
||||||
|
$ vsc e <first_service_name> <second_service_name>
|
||||||
|
```
|
||||||
|
|
||||||
**Print help:**
|
**Print help:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='VoidServiceControl',
|
name='VoidServiceControl',
|
||||||
version='0.2',
|
version='0.2.1',
|
||||||
url='https://git.orudo.ru/trueold89/void-service-control',
|
url='https://git.orudo.ru/trueold89/void-service-control',
|
||||||
author='trueold89',
|
author='trueold89',
|
||||||
author_email='trueold89@orudo.ru',
|
author_email='trueold89@orudo.ru',
|
||||||
|
|
Loading…
Reference in New Issue