diff options
author | Christian Breunig <christian@breunig.cc> | 2024-06-24 18:42:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 18:42:53 +0200 |
commit | 6fbe91ea8ea639e3933b3e23f99ce32204cebfe0 (patch) | |
tree | 160fa688a867c2cb12f93074efa8588d5b4370ce /src/systemd | |
parent | 4cd052bddcecd0d24c72521564f9844f21ffc4ea (diff) | |
parent | f6131611e15a644312e3c4baf5b8f6387c2930e7 (diff) | |
download | vyos-1x-6fbe91ea8ea639e3933b3e23f99ce32204cebfe0.tar.gz vyos-1x-6fbe91ea8ea639e3933b3e23f99ce32204cebfe0.zip |
Merge pull request #3588 from HollyGurza/T5735
T5735: Stunnel CLI and configuration
Diffstat (limited to 'src/systemd')
-rw-r--r-- | src/systemd/stunnel.service | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/systemd/stunnel.service b/src/systemd/stunnel.service new file mode 100644 index 000000000..b260e2984 --- /dev/null +++ b/src/systemd/stunnel.service @@ -0,0 +1,15 @@ +[Unit] +Description=SSL tunneling service +Documentation=http://man.he.net/man8/stunnel4 +After=network.target + +[Service] +ExecStart=/usr/bin/stunnel /run/stunnel/stunnel.conf +ExecReload=/bin/kill -HUP $MAINPID +KillMode=process +PIDFile=/run/stunnel/stunnel.pid +Type=forking +Restart=always + +[Install] +WantedBy=multi-user.target |