updated install emane task to auto answer yes to installing system packages
This commit is contained in:
parent
33d100acff
commit
897ecc6d35
1 changed files with 4 additions and 4 deletions
8
tasks.py
8
tasks.py
|
@ -301,14 +301,14 @@ def install_emane(c, verbose=False):
|
||||||
with p.start("installing system dependencies"):
|
with p.start("installing system dependencies"):
|
||||||
if os_info.like == OsLike.DEBIAN:
|
if os_info.like == OsLike.DEBIAN:
|
||||||
c.run(
|
c.run(
|
||||||
"sudo apt install gcc g++ automake libtool libxml2-dev libprotobuf-dev "
|
"sudo apt install -y gcc g++ automake libtool libxml2-dev "
|
||||||
"libpcap-dev libpcre3-dev uuid-dev pkg-config protobuf-compiler git "
|
"libprotobuf-dev libpcap-dev libpcre3-dev uuid-dev pkg-config "
|
||||||
"python3-protobuf python3-setuptools",
|
"protobuf-compiler git python3-protobuf python3-setuptools",
|
||||||
hide=hide,
|
hide=hide,
|
||||||
)
|
)
|
||||||
elif os_info.like == OsLike.REDHAT:
|
elif os_info.like == OsLike.REDHAT:
|
||||||
c.run(
|
c.run(
|
||||||
"sudo yum install autoconf automake git libtool libxml2-devel "
|
"sudo yum install -y autoconf automake git libtool libxml2-devel "
|
||||||
"libpcap-devel pcre-devel libuuid-devel make gcc-c++ "
|
"libpcap-devel pcre-devel libuuid-devel make gcc-c++ "
|
||||||
"python3-setuptools",
|
"python3-setuptools",
|
||||||
hide=hide,
|
hide=hide,
|
||||||
|
|
Loading…
Add table
Reference in a new issue