initial commit
Signed-off-by: Aaron Murray <plugins@omv-extras.org>
This commit is contained in:
parent
14e0a8f831
commit
f32235373d
13
preinstall
Executable file
13
preinstall
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
mac="$(ip -j a show dev eth0 | jq -r .[].address | head -n1)"
|
||||
if [ -z "${mac}" ]; then
|
||||
mac="$(ip -j a show dev end0 | jq -r .[].address | head -n1)"
|
||||
fi
|
||||
if [ -n "${mac}" ]; then
|
||||
echo "mac - ${mac}"
|
||||
echo -e "[Match]\nMACAddress=${mac}\n[Link]\nName=eth0" > /etc/systemd/network/10-persistent-eth0.link
|
||||
echo "Please reboot the system now."
|
||||
fi
|
||||
|
||||
exit 0
|
||||
Loading…
Reference in New Issue
Block a user