File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,13 +28,17 @@ PACKAGES+=" libssl-dev" # needed for certificate based security
2828PACKAGES+=" sudo" # needed for pcn-iptables, when building docker image
2929PACKAGES+=" kmod" # needed for pcn-iptables, when using lsmod to unload conntrack if not needed
3030PACKAGES+=" jq bash-completion" # needed for polycubectl bash autocompletion
31+ PACKAGES+=" libpcre3-dev" # needed for libyang
3132
3233if [ " $MODE " == " pcn-k8s" ]; then
3334 PACKAGES+=" curl" # needed for pcn-k8s to download a binary
3435 PACKAGES+=" iptables" # only for pcn-k8s
3536 PACKAGES+=" iproute2" # provides bridge command that is used to add entries in vxlan device
3637fi
3738
39+ # use non interactive to avoid blocking the install script
40+ $SUDO bash -c " DEBIAN_FRONTEND=noninteractive apt-get install -yq $PACKAGES "
41+
3842# licd $WORKDIR
3943set +e
4044if [ ! -d libyang ]; then
@@ -47,9 +51,6 @@ cmake ..
4751make -j $( getconf _NPROCESSORS_ONLN)
4852$SUDO make install
4953
50- # use non interactive to avoid blocking the install script
51- $SUDO bash -c " DEBIAN_FRONTEND=noninteractive apt-get install -yq $PACKAGES "
52-
5354echo " Install pistache"
5455cd $WORKDIR
5556set +e
You can’t perform that action at this time.
0 commit comments