From b080e7d8678db8f958a522df69908cf3c5f9cf2c Mon Sep 17 00:00:00 2001 From: Stepan Blyshchak Date: Wed, 30 Dec 2020 15:35:04 +0200 Subject: [PATCH] [fpm-frr] fix start.sh template paths There is no /usr/share/sonic/templates/supervisord/ folder and no supervisord.conf.j2 template. Signed-off-by: Stepan Blyshchak --- dockers/docker-fpm-frr/start.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dockers/docker-fpm-frr/start.sh b/dockers/docker-fpm-frr/start.sh index e43a9cac93c8..f7d16cd086fc 100755 --- a/dockers/docker-fpm-frr/start.sh +++ b/dockers/docker-fpm-frr/start.sh @@ -6,8 +6,7 @@ mkdir -p /etc/supervisor/conf.d CFGGEN_PARAMS=" \ -d \ -y /etc/sonic/constants.yml \ - -t /usr/share/sonic/templates/supervisord/frr_vars.j2 \ - -t /usr/share/sonic/templates/supervisord/supervisord.conf.j2,/etc/supervisor/conf.d/supervisord.conf \ + -t /usr/share/sonic/templates/frr_vars.j2 \ -t /usr/share/sonic/templates/bgpd/bgpd.conf.j2,/etc/frr/bgpd.conf \ -t /usr/share/sonic/templates/zebra/zebra.conf.j2,/etc/frr/zebra.conf \ -t /usr/share/sonic/templates/staticd/staticd.conf.j2,/etc/frr/staticd.conf \