Skip to content

Commit

Permalink
Add bootstrap scripts back (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebrandon1 authored May 17, 2024
1 parent ede8083 commit 070f550
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ bootstrap-docker-fedora-local:
bootstrap-docker-ubuntu-local:
cd config/vagrant/scripts && ./bootstrap-docker-ubuntu.sh

# Bootstrap Python (Ubuntu)
bootstrap-python-ubuntu-local:
cd config/vagrant/scripts && ./bootstrap-python-ubuntu.sh

# Bootstrap Python (Fedora)
bootstrap-python-fedora-local:
cd config/vagrant/scripts && ./bootstrap-python-fedora.sh

# Bootstrap Golang (Fedora)
bootstrap-golang-fedora-local:
cd config/vagrant/scripts && ./bootstrap-golang-fedora.sh
Expand Down
7 changes: 7 additions & 0 deletions config/vagrant/scripts/bootstrap-python-fedora.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
sudo dnf update -y
sudo dnf install -y python3 python3-pip
sudo pip3 install --upgrade pip

# Install the j2cli package for use with the multus-cni repo
sudo pip3 install j2cli
7 changes: 7 additions & 0 deletions config/vagrant/scripts/bootstrap-python-ubuntu.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash
sudo apt-get update -y
sudo apt-get install -y python3 python3-pip
sudo pip3 install --upgrade pip

# Install the j2cli package for use with the multus-cni repo
sudo pip3 install j2cli

0 comments on commit 070f550

Please sign in to comment.