34ea91349c
* Single image * Fix review comments * Update syncd service. Add HW mgmt to Mellanox single image. * Add single image template for Broadcom platform. SKU should be provided during configure: make configure PLATFORM=broadcom SKU=Force10-S6000 * Add single image template for Cavium platform. SKU should be provided during configure: make configure PLATFORM=cavium SKU=AS7512 * Add description to sonic_debian_extension.j2 file.
47 lines
664 B
Plaintext
47 lines
664 B
Plaintext
## Quagga rules
|
|
|
|
if $programname == "zebra" then {
|
|
/var/log/quagga/zebra.log
|
|
stop
|
|
}
|
|
|
|
if $programname == "bgpd" then {
|
|
/var/log/quagga/bgpd.log
|
|
stop
|
|
}
|
|
|
|
if $programname == "quagga" then {
|
|
/var/log/quagga/zebra.log
|
|
stop
|
|
}
|
|
|
|
if $programname == "watchquagga" then {
|
|
/var/log/quagga/zebra.log
|
|
stop
|
|
}
|
|
|
|
## Platform modules rules
|
|
if $programname == "platform-modules" then {
|
|
/var/log/syslog
|
|
stop
|
|
}
|
|
|
|
## Sensord rules
|
|
if $programname == "sensord" then {
|
|
/var/log/syslog
|
|
stop
|
|
}
|
|
|
|
## Sswsyncd rules
|
|
if $programname == "sswsyncd" then {
|
|
/var/log/syslog
|
|
stop
|
|
}
|
|
|
|
## Ansible rules
|
|
if $programname startswith "ansible" then {
|
|
/var/log/messages
|
|
stop
|
|
}
|
|
|