diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-03-07 22:36:17 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-03-07 22:36:17 -0300 |
commit | 480b05733ee6ba1f1016296a3060b8259ebeca25 (patch) | |
tree | da77794e92655d34b110c3de3303b2a804962290 | |
parent | c214f22f95b50c07fed034bd692bc43fe69ebcf1 (diff) | |
download | hydra-480b05733ee6ba1f1016296a3060b8259ebeca25.tar.gz hydra-480b05733ee6ba1f1016296a3060b8259ebeca25.tar.bz2 |
Fix: hydra_provision_config_load: use /etc/network/interfaces/eth0.conf
-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 0b00682..073add0 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 > /dev/null + cat <<-EOF | $SUDO tee $WORK/etc/network/interfaces/eth0.conf > /dev/null auto eth0 allow-hotplug eth0 iface eth0 inet dhcp |