mirror of https://github.com/dswd/vpncloud.git
Fixed potential startup dependency issue
This commit is contained in:
parent
63dc1e3ce1
commit
229db241de
|
@ -6,8 +6,10 @@ This project follows [semantic versioning](http://semver.org).
|
||||||
|
|
||||||
- [added] Exchange peer timeout and adapt keepalive accordingly
|
- [added] Exchange peer timeout and adapt keepalive accordingly
|
||||||
- [added] Reducing published peer timeout to 5 min when NAT is detected
|
- [added] Reducing published peer timeout to 5 min when NAT is detected
|
||||||
|
- [added] Added more tests
|
||||||
- [changed] Rust version 1.41.0
|
- [changed] Rust version 1.41.0
|
||||||
- [changed] Updated dependencies
|
- [changed] Updated dependencies
|
||||||
|
- [fixed] Fixed potential startup dependency issue
|
||||||
|
|
||||||
### v1.0.0 (2019-03-21)
|
### v1.0.0 (2019-03-21)
|
||||||
|
|
||||||
|
|
|
@ -102,6 +102,4 @@ contributions are very welcome:
|
||||||
|
|
||||||
|
|
||||||
### Semantic Versioning
|
### Semantic Versioning
|
||||||
This project uses [semantic versioning](http://semver.org). Currently that means
|
This project uses [semantic versioning](http://semver.org).
|
||||||
that everything can change between versions before 1.0 is finally released.
|
|
||||||
However I am considering to release 1.0 soon.
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=VpnCloud network '%I'
|
Description=VpnCloud network '%I'
|
||||||
Before=network-online.target
|
After=network-online.target
|
||||||
|
Wants=network-online.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=forking
|
Type=forking
|
||||||
|
|
Loading…
Reference in New Issue