13 Aug 2021 (Fri)

17:54:40 # Life openvpn client configuration with systemd. Spent a while trying to figure out why my configuration file /etc/openvpn does not take effect. It was because I needed to tell systemd to reload the daemon stuff and trying to restart openvpn only did not have any meaningful effect. After I learnt how things work it made some sense, but I expected /etc/init.d/openvpn restart to do the right thing.

	  systemctl daemon-reload
	  service openvpn restart
	
Junichi Uekawa