Browse Source

Merge 6f5726c4ae into 1d516e35e6

pull/1059/merge
Dmitry Afanasiev 1 year ago
committed by GitHub
parent
commit
63d0229bd7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 19
      README_en.md
  2. 9
      snap/snapcraft.yaml

19
README_en.md

@ -69,6 +69,25 @@ brew install gost
```bash
sudo snap install core
sudo snap install gost
####
## Configure snap service daemon
# Enable and start gost.gost-daemon snap service
sudo snap start --enable gost.gost-daemon
# Override generated systemd service (configure startup options)
sudo systemctl edit snap.gost.gost-daemon.service
## NOTE: you can pass args to gost:
## [Service]
## ExecStart=
## ExecStart=/usr/bin/snap run gost.gost-daemon <you-configuration-flags-here>
# Restart generated systemd service to apply changes
sudo systemctl restart snap.gost.gost-daemon.service
# ... and show service status
sudo systemctl status snap.gost.gost-daemon.service
```
Getting started

9
snap/snapcraft.yaml

@ -32,3 +32,12 @@ apps:
- network
- network-bind
gost-daemon:
command: bin/gost
daemon: simple
install-mode: disable
plugs:
- home
- network
- network-bind

Loading…
Cancel
Save