diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2021-05-31 12:08:48 +0200 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2021-06-06 00:14:10 +0200 |
commit | b3bce6497cc20cad687efc818d679d71d62fbd26 (patch) | |
tree | 67ccbd191f824de18d8b39f0694c040c65e38e78 /src/systemd | |
parent | 77866ccb16194a2446b2faccb52ec852aa882b96 (diff) | |
download | vyos-1x-b3bce6497cc20cad687efc818d679d71d62fbd26.tar.gz vyos-1x-b3bce6497cc20cad687efc818d679d71d62fbd26.zip |
nhrp: T3599: Migrate NHRP to XML/Python
Diffstat (limited to 'src/systemd')
-rw-r--r-- | src/systemd/opennhrp.service | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/systemd/opennhrp.service b/src/systemd/opennhrp.service new file mode 100644 index 000000000..70235f89d --- /dev/null +++ b/src/systemd/opennhrp.service @@ -0,0 +1,13 @@ +[Unit] +Description=OpenNHRP +After=vyos-router.service +ConditionPathExists=/run/opennhrp/opennhrp.conf +StartLimitIntervalSec=0 + +[Service] +Type=forking +ExecStart=/usr/sbin/opennhrp -d -v -a /run/opennhrp.socket -c /run/opennhrp/opennhrp.conf -s /etc/opennhrp/opennhrp-script.py -p /run/opennhrp.pid +ExecReload=/usr/bin/kill -HUP $MAINPID +PIDFile=/run/opennhrp.pid +Restart=on-failure +RestartSec=20 |