Initial commit

This commit is contained in:
2016-12-17 15:44:44 +01:00
commit 8809349e6d
49 changed files with 828 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
Systemd Unit fuer myopenvpn
ist nach /etc/systemd/system zu kopieren und anschliessend:
# systemctl daemon-reload
+14
View File
@@ -0,0 +1,14 @@
[Unit]
Description=My OpenVPN Service
After=network-online.target network.target remote-fs.target nss-lookup.target
Requires=network-online.target
[Service]
PrivateTmp=true
Type=forking
ExecStart=/opt/openvpn/bin/startup.sh
ExecStop=/opt/openvpn/bin/shutdown.sh
PIDFile=/var/run/openvpn/myopenvpn.pid
[Install]
WantedBy=multi-user.target
+13
View File
@@ -0,0 +1,13 @@
[Unit]
Description=My OpenVPN Service
After=network-online.target
[Service]
PrivateTmp=true
Type=forking
ExecStart=/opt/openvpn/bin/startup.sh
ExecStop=/opt/openvpn/bin/shutdown.sh
PIDFile=/var/run/openvpn/myopenvpn.pid
[Install]
WantedBy=multi-user.target
+13
View File
@@ -0,0 +1,13 @@
[Unit]
Description=My OpenVPN Service
After=network-online.target
[Service]
PrivateTmp=true
Type=forking
ExecStart=/opt/openvpn/bin/startup.sh
ExecStop=/opt/openvpn/bin/shutdown.sh
PIDFile=/var/run/openvpn/myopenvpn.pid
[Install]
WantedBy=multi-user.target