Guest User

Untitled

a guest
Jan 9th, 2019
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. The output of this command:
  2.  
  3. systemctl --type=service --state=active list-units
  4.  
  5. gives these entries.
  6.  
  7. openvpn.service loaded active exited OpenVPN service
  8. [email protected] loaded active running OpenVPN connection to es10.nordvpn.com.udp1194
  9. [email protected] loaded active running OpenVPN connection to es14.nordvpn.com.udp1194
  10.  
  11.  
  12. I only have one systemd service in the /etc/systemd/system/ folder, which is like this:
  13.  
  14. <filename: [email protected] >
  15.  
  16. ---------------------------------------------------
  17. [Unit]
  18. Description=OpenVPN connection to %i
  19. PartOf=openvpn.service
  20. ReloadPropagatedFrom=openvpn.service
  21. Before=systemd-user-sessions.service
  22.  
  23. [Service]
  24. Type=forking
  25. ExecStart=/usr/sbin/openvpn --cd /etc/openvpn --config /etc/openvpn/nl64.nordvpn.com.udp1194.ovpn --daemon [email protected]
  26.  
  27. ExecReload=/bin/kill -HUP $MAINPID
  28. WorkingDirectory=/etc/openvpn
  29. ExecStartPre=/etc/openvpn/openvpn-routes-up.sh
  30. ExecStopPost=/etc/openvpn/openvpn-routes.sh
  31.  
  32.  
  33. [Install]
  34. WantedBy=multi-user.target
  35.  
  36. ---------------------------------------------------
  37.  
  38.  
  39. I've tried disabling and stop all services by name and this works until next boot.
  40.  
  41. I'm not sure what could be causing these services to get started. Is there anything else I should look at?
Advertisement
Add Comment
Please, Sign In to add comment