Compared to original packaging scheme within openvswitch, we removed ovn-trace, ovn-detrace from openvswitch-ovn-common package. ovn-detrace requires python libs to run, so it does not actually work out of box in previous builds anyway. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
28 lines
961 B
Diff
28 lines
961 B
Diff
From ecf232bf32dd433642bb9da2ac0c2de483b8736a Mon Sep 17 00:00:00 2001
|
|
From: Yousong Zhou <yszhou4tech@gmail.com>
|
|
Date: Mon, 23 Mar 2020 15:54:26 +0800
|
|
Subject: [PATCH] ovn-lib: fix install_dir()
|
|
|
|
The command "install" is not available in OpenWrt by default
|
|
|
|
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
|
|
---
|
|
utilities/ovn-lib.in | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/utilities/ovn-lib.in b/utilities/ovn-lib.in
|
|
index af1b72edb..f6ab5581c 100644
|
|
--- a/utilities/ovn-lib.in
|
|
+++ b/utilities/ovn-lib.in
|
|
@@ -54,7 +54,10 @@ ovn_install_dir () {
|
|
[ "${OVN_USER##*:}" != "" ] && INSTALL_GROUP="${OVN_USER##*:}"
|
|
|
|
if test ! -d "$DIR"; then
|
|
- install -d -m "$INSTALL_MODE" -o "$INSTALL_USER" -g "$INSTALL_GROUP" "$DIR"
|
|
+ mkdir -p "$DIR"
|
|
+ chmod "$INSTALL_MODE" "$DIR"
|
|
+ chown "$INSTALL_USER" "$DIR"
|
|
+ chgrp "$INSTALL_GROUP" "$DIR"
|
|
restorecon "$DIR" >/dev/null 2>&1
|
|
fi
|
|
}
|