目次

03 CentOS7 vpnclient起動スクリプト設定

vpnclientの場合

1. /usr/lib/systemd/system に起動スクリプトを用意

# cat /usr/lib/systemd/system/vpnclient.service 
[Unit]
Description=SoftEther VPN Server
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/vpnclient/vpnclient start
ExecStop=/usr/local/vpnclient/vpnclient stop

[Install]
WantedBy=multi-user.target

デーモンファイルをリロード

# systemctl daemon-reload

リロードすると、デーモンファイルが読み込まれる

# systemctl list-unit-files -t service| grep vpn
vpnclient.service                             disabled

自動起動

# systemctl enable vpnclient