diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-03-07 23:15:08 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-03-07 23:15:08 -0300 |
commit | 3e754e2a0fa49b9e1cff4a09f648dc23c57944c3 (patch) | |
tree | 36f04587fe60cdf0ecf29f3604d93a0738bf383e /lib | |
parent | 99fe1826204c2f5bd113228d3ad40e34c46413e2 (diff) | |
download | hydra-3e754e2a0fa49b9e1cff4a09f648dc23c57944c3.tar.gz hydra-3e754e2a0fa49b9e1cff4a09f648dc23c57944c3.tar.bz2 |
Fix: hydra_provision_config_load: use /etc/network/interfaces/eth0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hydra/provision | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hydra/provision b/lib/hydra/provision index 073add0..54d9bcf 100644 --- a/lib/hydra/provision +++ b/lib/hydra/provision @@ -38,7 +38,7 @@ function hydra_provision_config_load { # Networking. function hydra_provision_networking { echo "Doing a basic network config..." - cat <<-EOF | $SUDO tee $WORK/etc/network/interfaces/eth0.conf > /dev/null + cat <<-EOF | $SUDO tee $WORK/etc/network/interfaces/eth0 > /dev/null auto eth0 allow-hotplug eth0 iface eth0 inet dhcp |