Skip to content

Commit

Permalink
Configure System and Services
Browse files Browse the repository at this point in the history
  • Loading branch information
BennyBergle committed Apr 12, 2024
1 parent d44cfb8 commit 072c1e7
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/genisys-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,20 @@ jobs:
${{ runner.os }}-poetry-
- name: Install System Dependencies
run: sudo apt-get update && sudo apt-get install -y iptables-persistent netfilter-persistent
run: |
sudo apt-get update
sudo apt-get install -y iptables-persistent netfilter-persistent openvswitch-switch dnsmasq vsftpd
- name: Configure System and Services
run: |
sudo touch /etc/netplan/99-genisys.yaml
sudo chmod 0644 /etc/netplan/50-cloud-init.yaml
sudo chmod 0644 /etc/netplan/99-genisys.yaml
echo "net.ipv4.ip_forward = 1" | sudo tee /etc/sysctl.d/99-ip-forwarding-rule.conf
sudo sysctl -p /etc/sysctl.d/99-ip-forwarding-rule.conf
sudo systemctl start ovsdb-server
sudo systemctl restart dnsmasq
sudo systemctl restart vsftpd
- name: Install Dependencies
run: |
Expand Down

0 comments on commit 072c1e7

Please sign in to comment.