diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-11-20 12:25:44 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-11-20 12:27:40 +0100 |
commit | d5266b7f44e0b9c02ef1fc3166ba59431ab43230 (patch) | |
tree | 97231a3ff6e4b30715847e827fe0f8d07f4449ea /packages/systemd/ndpid@.service.in | |
parent | 82934b7271ad11332cdc291188e6b51e9534c301 (diff) |
Support simple config file reading via systemd environment file.
* cfg file path defaults to PREFIX/etc/default/ndpid
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'packages/systemd/ndpid@.service.in')
-rw-r--r-- | packages/systemd/ndpid@.service.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/systemd/ndpid@.service.in b/packages/systemd/ndpid@.service.in new file mode 100644 index 000000000..cfbb4110f --- /dev/null +++ b/packages/systemd/ndpid@.service.in @@ -0,0 +1,14 @@ +[Unit] +Description=nDPId Service on interface %i +After=ndpisrvd.service +Requires=ndpisrvd.service + +[Service] +Type=simple +ExecStart=@CMAKE_INSTALL_PREFIX@/sbin/nDPId $NDPID_ARGS -i %i -c ${COLLECTOR_PATH} +Restart=on-failure +Environment=COLLECTOR_PATH=/var/run/ndpisrvd-collector NDPID_ARGS="-A -z" +EnvironmentFile=@CMAKE_INSTALL_PREFIX@/etc/default/ndpid + +[Install] +WantedBy=multi-user.target |