mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
12 lines
353 B
JSON
12 lines
353 B
JSON
// This is a mapping of Debian release codenames to NIC configurations
|
|
// Every item in an array is a line
|
|
{
|
|
"squeeze": ["auto lo",
|
|
"iface lo inet loopback",
|
|
"auto eth0",
|
|
"iface eth0 inet dhcp"],
|
|
"wheezy": ["auto eth0",
|
|
"iface eth0 inet dhcp"],
|
|
"jessie": ["auto eth0",
|
|
"iface eth0 inet dhcp"]
|
|
}
|