diff options
author | Christian Breunig <christian@breunig.cc> | 2023-06-29 16:31:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 16:31:40 +0200 |
commit | d61e6b5e0da8a3844c57d5eff64963b954bf0ada (patch) | |
tree | fe4c6c05cea4c67feb689c4fcf1b6356eb3fa698 /data/templates/vpp/override.conf.j2 | |
parent | 508a6b32f7a7edc8c6a8c4f2fa1bd98ced909680 (diff) | |
parent | 1d94ff123d546244d89b36deeeb092f0772c60fe (diff) | |
download | vyos-1x-d61e6b5e0da8a3844c57d5eff64963b954bf0ada.tar.gz vyos-1x-d61e6b5e0da8a3844c57d5eff64963b954bf0ada.zip |
Merge pull request #2059 from sever-sever/T1797-vpp
T1797: Add initial vpp configuration
Diffstat (limited to 'data/templates/vpp/override.conf.j2')
-rw-r--r-- | data/templates/vpp/override.conf.j2 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/data/templates/vpp/override.conf.j2 b/data/templates/vpp/override.conf.j2 new file mode 100644 index 000000000..a2c2b04ed --- /dev/null +++ b/data/templates/vpp/override.conf.j2 @@ -0,0 +1,14 @@ +[Unit] +After= +After=vyos-router.service +ConditionPathExists= +ConditionPathExists=/run/vpp/vpp.conf + +[Service] +EnvironmentFile= +ExecStart= +ExecStart=/usr/bin/vpp -c /run/vpp/vpp.conf +WorkingDirectory= +WorkingDirectory=/run/vpp +Restart=always +RestartSec=10 |