mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-07 14:44:41 +02:00
The Standard error type "syslog" is obsolete, causing a warning since systemd version 246 [1]. Please consider using "journal" or "journal+console" [1] https://github.com/systemd/systemd/blob/master/NEWS#L202 Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
401 B
Desktop File
19 lines
401 B
Desktop File
[Unit]
|
|
Description=ip address pool allocator
|
|
Requires=rpcbind.service
|
|
After=rpcbind.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
# Start ippoold in the foreground!
|
|
ExecStart=@SBINDIR@/ippoold -f
|
|
# Normal output will go to syslog, so suppress stdout.
|
|
StandardOutput=null
|
|
# ExecStop is not needed. systemd will send SIGTERM
|
|
# and ippoold will exit status 1.
|
|
SuccessExitStatus=1
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|