Drop the network-trigger script

This is done at boot time and doesn't normally need to be done again.

On AWS or in the setup, renaming any network interfaces is being
handled automatically.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2018-08-22 14:05:43 +01:00
parent f3d59d2c94
commit 84cd9b9162
7 changed files with 5 additions and 31 deletions

View File

@@ -1,22 +0,0 @@
#!/bin/sh
########################################################################
# Begin $rc_base/init.d/network-trigger
########################################################################
. /etc/sysconfig/rc
. ${rc_functions}
case "${1}" in
start)
boot_mesg "Triggering network devices..."
udevadm trigger --action="add" --subsystem-match="net"
evaluate_retval
;;
*)
echo "Usage: ${0} {start}"
exit 1
;;
esac
# End $rc_base/init.d/network-trigger