4d2a55d373
- Use the `wait_for_link.sh` script to delay ndppd start until after the VLAN interface is ready - Avoids issue where ndppd tries to change interface attributes before the interface is ready
20 lines
432 B
Plaintext
20 lines
432 B
Plaintext
[program:ndppd]
|
|
command=/usr/sbin/ndppd
|
|
priority=7
|
|
autostart=false
|
|
autorestart=unexpected
|
|
stdout_logfile=syslog
|
|
stderr_logfile=syslog
|
|
dependent_startup=true
|
|
dependent_startup_wait_for=wait_for_link:exited
|
|
|
|
[program:wait_for_link]
|
|
command=/usr/bin/wait_for_link.sh
|
|
priority=7
|
|
autostart=false
|
|
autorestart=false
|
|
startsecs=0
|
|
stdout_logfile=syslog
|
|
stderr_logfile=syslog
|
|
dependent_startup=true
|
|
dependent_startup_wait_for=swssconfig:exited |