Skip to content

Commit 7ca9af2

Browse files
committed
Fix install script on CloudLab and README
1 parent 513f293 commit 7ca9af2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,7 @@ env
5656

5757
# Meson artifacts
5858
/insstall
59-
**/insstall/**
59+
**/insstall/**
60+
61+
# Submodules
62+
/subprojects/dpdk-kmods/*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ You can find information about research projects building on [OpenNetVM][onvm] a
1414

1515
## Getting Started
1616

17-
We've provided a bash script to assist with setting up your development environment for working with OpenNetVM. Take a look at [`scripts/setup.sh`](/scripts/setup.sh) to see a full list of installed packages.
17+
We've provided two scripts to install required dependencies, and configure your machine to run OpenNetVM. Required dependencies are installed by [`scripts/install.sh`](/scripts/install.sh), and configuration is done by [`scripts/setup_runtime.sh`](/scripts/setup_runtime.sh).
1818

1919
From the `openNetVM` folder, run the following two commands:
2020

2121
```text
22-
./scripts/setup.sh
22+
./scripts/install.sh
2323
```
2424

2525
```text

scripts/install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ required=$(IFS=' '; echo "${packages[*]}")
8080
echo "- Installing required packages"
8181
if [ "$install_packages" = true ]; then
8282
echo " - installing: $required"
83+
sudo apt-get update
8384
sudo apt-get install $required
8485
else
8586
echo " - skipping due to --noinstall flag"

0 commit comments

Comments
 (0)