mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit updated Vagrantfile, YAML data file, shell provisioning scripts, and updated README.md.
5 lines
123 B
Bash
5 lines
123 B
Bash
#!/bin/bash
|
|
|
|
# Provision secondary network interface
|
|
sudo ip addr add 192.168.100.101/24 dev eth1
|
|
sudo ip link set eth1 up
|