From c3341c05cf4d7cf4ec14b1ec37949cd2be136fa1 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Mon, 30 Aug 2021 15:21:59 -0400 Subject: [PATCH] alpine: fix path for daemons file install The install statement was putting the daemons file at "/etc/frr" instead of making a new directory "/etc/frr" and putting it inside there. Signed-off-by: Quentin Young --- alpine/APKBUILD.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/APKBUILD.in b/alpine/APKBUILD.in index 477fa415cb..eb28421e85 100644 --- a/alpine/APKBUILD.in +++ b/alpine/APKBUILD.in @@ -61,7 +61,7 @@ package() { cd "$builddir" make DESTDIR="$pkgdir" install - install -Dm644 "$builddir"/tools/etc/frr/daemons "$pkgdir"$_sysconfdir + install -Dm644 "$builddir"/tools/etc/frr/daemons "$pkgdir"$_sysconfdir/daemons install -d "$pkgdir"/etc/init.d ln -s ${_sbindir}/frr "$pkgdir"/etc/init.d/frr } -- 2.39.5