mirror of https://github.com/dswd/vpncloud.git
Fixed problem with service restrictions
This commit is contained in:
parent
7edb649c32
commit
f59f3ab5ab
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
This project follows [semantic versioning](http://semver.org).
|
This project follows [semantic versioning](http://semver.org).
|
||||||
|
|
||||||
|
### v1.2.1 (2019-12-22)
|
||||||
|
|
||||||
|
- [fixed] Fixed a problem with service restrictions
|
||||||
|
|
||||||
### v1.2.0 (2019-12-20)
|
### v1.2.0 (2019-12-20)
|
||||||
|
|
||||||
- [added] Added service restrictions to systemd
|
- [added] Added service restrictions to systemd
|
||||||
|
|
|
@ -556,7 +556,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "vpncloud"
|
name = "vpncloud"
|
||||||
version = "1.2.0"
|
version = "1.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
|
"cc 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"daemonize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"daemonize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "vpncloud"
|
name = "vpncloud"
|
||||||
version = "1.2.0"
|
version = "1.2.1"
|
||||||
authors = ["Dennis Schwerdel <schwerdel@googlemail.com>"]
|
authors = ["Dennis Schwerdel <schwerdel@googlemail.com>"]
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
vpncloud (1.2.1) stable; urgency=medium
|
||||||
|
|
||||||
|
* [fixed] Fixed a problem with service restrictions
|
||||||
|
|
||||||
|
-- Dennis Schwerdel <schwerdel@googlemail.com> Sun, 22 Dec 2019 16:47:38 +0100
|
||||||
|
|
||||||
vpncloud (1.2.0) stable; urgency=medium
|
vpncloud (1.2.0) stable; urgency=medium
|
||||||
|
|
||||||
* [added] Added service restrictions to systemd
|
* [added] Added service restrictions to systemd
|
||||||
|
|
|
@ -14,7 +14,7 @@ LimitNPROC=10
|
||||||
PrivateTmp=yes
|
PrivateTmp=yes
|
||||||
ProtectHome=yes
|
ProtectHome=yes
|
||||||
ProtectSystem=strict
|
ProtectSystem=strict
|
||||||
ReadWritePaths=/var/log/vpncloud-%i.log /var/log/vpncloud-%i.stats
|
ReadWritePaths=-/var/log/vpncloud-%i.log -/var/log/vpncloud-%i.stats
|
||||||
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_RAW CAP_SETGID CAP_SETUID CAP_SYS_CHROOT
|
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_RAW CAP_SETGID CAP_SETUID CAP_SYS_CHROOT
|
||||||
DeviceAllow=/dev/null rw
|
DeviceAllow=/dev/null rw
|
||||||
DeviceAllow=/dev/net/tun rw
|
DeviceAllow=/dev/net/tun rw
|
||||||
|
|
Loading…
Reference in New Issue