We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found a case on a Hetzner SX134 server with an addiitonal 10 G network interface that in
nixos-install-scripts/hosters/hetzner-dedicated/hetzner-dedicated-wipe-and-install-nixos.sh
Line 184 in 552eb22
we need
-INTERFACE_DEVICE_PATH=$(udevadm info -e | grep -Po "(?<=^P: )(.*${RESCUE_INTERFACE})") +INTERFACE_DEVICE_PATH=$(udevadm info -e | grep -Po "(?<=^P: )(.*${RESCUE_INTERFACE})$")
Otherwise we can get two maches:
# udevadm info -e | grep -P "(?<=^P: )(.*eth1)" P: /devices/pci0000:00/0000:00:01.1/0000:01:00.0/net/eth1 P: /devices/pci0000:00/0000:00:01.1/0000:01:00.0/net/eth1/ixgbe-mdio-0000:01:00.0
when in fact we want to match only the first line.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found a case on a Hetzner SX134 server with an addiitonal 10 G network interface that in
nixos-install-scripts/hosters/hetzner-dedicated/hetzner-dedicated-wipe-and-install-nixos.sh
Line 184 in 552eb22
we need
Otherwise we can get two maches:
when in fact we want to match only the first line.
The text was updated successfully, but these errors were encountered: