Skip to content

Commit 070f550

Browse files
authored
Add bootstrap scripts back (#437)
1 parent ede8083 commit 070f550

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ bootstrap-docker-fedora-local:
4343
bootstrap-docker-ubuntu-local:
4444
cd config/vagrant/scripts && ./bootstrap-docker-ubuntu.sh
4545

46+
# Bootstrap Python (Ubuntu)
47+
bootstrap-python-ubuntu-local:
48+
cd config/vagrant/scripts && ./bootstrap-python-ubuntu.sh
49+
50+
# Bootstrap Python (Fedora)
51+
bootstrap-python-fedora-local:
52+
cd config/vagrant/scripts && ./bootstrap-python-fedora.sh
53+
4654
# Bootstrap Golang (Fedora)
4755
bootstrap-golang-fedora-local:
4856
cd config/vagrant/scripts && ./bootstrap-golang-fedora.sh
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
sudo dnf update -y
3+
sudo dnf install -y python3 python3-pip
4+
sudo pip3 install --upgrade pip
5+
6+
# Install the j2cli package for use with the multus-cni repo
7+
sudo pip3 install j2cli
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
sudo apt-get update -y
3+
sudo apt-get install -y python3 python3-pip
4+
sudo pip3 install --upgrade pip
5+
6+
# Install the j2cli package for use with the multus-cni repo
7+
sudo pip3 install j2cli

0 commit comments

Comments
 (0)