From f0a9f045fa24d6bcad94c1a2d994505f160e8210 Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Wed, 4 Jan 2023 17:22:32 +0000 Subject: [PATCH] Update build_rust.sh to include node manager Update the Rust build script to include the node manager, and its required files. Signed-off-by: Herbert Wolverson --- src/build_rust.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/build_rust.sh b/src/build_rust.sh index 175702c0..5b22e35e 100755 --- a/src/build_rust.sh +++ b/src/build_rust.sh @@ -7,7 +7,7 @@ # automatically. # # Don't forget to setup `/etc/lqos` -PROGS="lqosd lqtop xdp_iphash_to_cpu_cmdline xdp_pping" +PROGS="lqosd lqtop xdp_iphash_to_cpu_cmdline xdp_pping lqos_node_manager" mkdir -p bin/static pushd rust #cargo clean @@ -24,5 +24,5 @@ do done popd cp -R rust/lqos_node_manager/static/* bin/static - -echo "Don't forget to setup /etc/lqos!" \ No newline at end of file +cp rust/lqos_node_manager/Rocket.toml bin/ +echo "Don't forget to setup /etc/lqos!"