19 lines
637 B
Bash
Executable File
19 lines
637 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Remove stale rsyslog PID file if it exists
|
|
rm -f /var/run/rsyslogd.pid
|
|
|
|
# Start rsyslog
|
|
supervisorctl start rsyslogd
|
|
|
|
# Wait for all interfaces to come up and be assigned IPv4 addresses before
|
|
# starting the DHCP relay agent(s). If an interface the relay should listen
|
|
# on is down, the relay agent will not start. If an interface the relay should
|
|
# listen on is up but does not have an IP address assigned when the relay
|
|
# agent starts, it will not listen or send on that interface for the lifetime
|
|
# of the process.
|
|
/usr/bin/wait_for_intf.sh
|
|
|
|
# Start the DHCP relay agent(s)
|
|
supervisorctl start isc-dhcp-relay:*
|