2017-05-08 17:43:31 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
mkdir -p /etc/quagga
|
2017-08-01 21:02:00 -05:00
|
|
|
|
2020-08-17 17:47:42 -05:00
|
|
|
CFGGEN_PARAMS=" \
|
|
|
|
-d \
|
|
|
|
-y /etc/sonic/constants.yml \
|
|
|
|
-t /usr/share/sonic/templates/bgpd.conf.j2,/etc/quagga/bgpd.conf \
|
|
|
|
-t /usr/share/sonic/templates/zebra.conf.j2,/etc/quagga/zebra.conf \
|
|
|
|
-t /usr/share/sonic/templates/isolate.j2,/usr/sbin/bgp-isolate \
|
|
|
|
-t /usr/share/sonic/templates/unisolate.j2,/usr/sbin/bgp-unisolate \
|
|
|
|
"
|
|
|
|
sonic-cfggen $CFGGEN_PARAMS
|
2017-05-08 17:43:31 -05:00
|
|
|
|
|
|
|
chown root:root /usr/sbin/bgp-isolate
|
|
|
|
chmod 0755 /usr/sbin/bgp-isolate
|
|
|
|
|
|
|
|
chown root:root /usr/sbin/bgp-unisolate
|
|
|
|
chmod 0755 /usr/sbin/bgp-unisolate
|
|
|
|
|
|
|
|
mkdir -p /var/sonic
|
|
|
|
echo "# Config files managed by sonic-config-engine" > /var/sonic/config_status
|
2016-07-26 14:01:58 -05:00
|
|
|
|
2017-03-29 20:07:25 -05:00
|
|
|
rm -f /var/run/rsyslogd.pid
|
2017-05-08 17:43:31 -05:00
|
|
|
|
2017-08-01 21:02:00 -05:00
|
|
|
supervisorctl start bgpcfgd
|
|
|
|
|
2017-05-08 17:43:31 -05:00
|
|
|
supervisorctl start rsyslogd
|
|
|
|
|
2017-08-21 15:55:59 -05:00
|
|
|
# Start Quagga processes
|
|
|
|
supervisorctl start zebra
|
|
|
|
supervisorctl start bgpd
|
2017-05-08 17:43:31 -05:00
|
|
|
|
|
|
|
supervisorctl start fpmsyncd
|