2017-05-08 17:43:31 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
mkdir -p /etc/quagga
|
2019-11-06 18:07:28 -06:00
|
|
|
sonic-cfggen -d -y /etc/sonic/constants.yml -t /usr/share/sonic/templates/bgpd.conf.j2 > /etc/quagga/bgpd.conf
|
2017-08-01 21:02:00 -05:00
|
|
|
|
2017-11-23 18:31:37 -06:00
|
|
|
sonic-cfggen -d -t /usr/share/sonic/templates/zebra.conf.j2 > /etc/quagga/zebra.conf
|
2017-05-08 17:43:31 -05:00
|
|
|
|
2017-11-23 18:31:37 -06:00
|
|
|
sonic-cfggen -d -t /usr/share/sonic/templates/isolate.j2 > /usr/sbin/bgp-isolate
|
2017-05-08 17:43:31 -05:00
|
|
|
chown root:root /usr/sbin/bgp-isolate
|
|
|
|
chmod 0755 /usr/sbin/bgp-isolate
|
|
|
|
|
2017-11-23 18:31:37 -06:00
|
|
|
sonic-cfggen -d -t /usr/share/sonic/templates/unisolate.j2 > /usr/sbin/bgp-unisolate
|
2017-05-08 17:43:31 -05:00
|
|
|
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
|