mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-08-17 15:57:46 +00:00
13 lines
257 B
Go
13 lines
257 B
Go
package systemd
|
|
|
|
const EdgevpnUnit string = `[Unit]
|
|
Description=EdgeVPN Daemon
|
|
After=network.target
|
|
[Service]
|
|
EnvironmentFile=/etc/systemd/system.conf.d/edgevpn-%i.env
|
|
LimitNOFILE=49152
|
|
ExecStart=edgevpn
|
|
Restart=always
|
|
[Install]
|
|
WantedBy=multi-user.target`
|