Testing dependency fixes, Netconf XML declaration and filter logic fix

Install libnghttp2-devel in ubuntu and centos per required dependencies
Ignore case when checking XML declaration encoding value per W3C recommendations
Fix filter logic to follow RFC6241 (7.1, 7.7) and default to subtree
This commit is contained in:
Phil Heller 2021-07-29 21:07:15 -06:00 committed by Olof hagsand
parent 26a8cfcedb
commit b200361620
5 changed files with 64 additions and 52 deletions

View file

@ -169,7 +169,7 @@ case $release in
native)
$sshcmd sudo yum install -y libevent openssl
$sshcmd sudo yum install -y libevent-devel openssl-devel
$sshcmd sudo dnf config-manager --set-enabled powertools
$sshcmd sudo yum-config-manager --enable powertools
$sshcmd sudo yum install -y libnghttp2-devel
;;
esac
@ -215,9 +215,13 @@ case $release in
;;
native)
# $sshcmd sudo apt install -y libevent-2.1
<<<<<<< HEAD
$sshcmd sudo apt install -y libssl-dev
$sshcmd sudo apt install -y libevent-dev # evhtp
$sshcmd sudo apt install -y libnghttp2-dev # nghttp2
=======
$sshcmd sudo apt install -y libevent-dev libssl-dev libnghttp2-dev
>>>>>>> Testing dependency fixes, Netconf XML declaration and filter logic fix
;;
esac
;;