diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-06-03 13:43:23 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-06-03 13:43:23 +0200 |
commit | fe0f98b1fd09d27e0f37add0088d1ade3f2bb695 (patch) | |
tree | c3867790879329f021185cf6fbbbfc78c5bf7995 | |
parent | caa76df5f066e65f0dc39feba46013d205fc472b (diff) |
Add --action=add to udevadm trigger2010.06-1
This is necessary as the new udev defaults to --action=change which
breaks network device renaming.
-rwxr-xr-x | rc.single | 2 | ||||
-rwxr-xr-x | rc.sysinit | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -51,7 +51,7 @@ if [ "$PREVLEVEL" != "N" ]; then if /bin/pidof -o %PPID /sbin/udevd >/dev/null; then stat_busy "Triggering UDev uevents" /sbin/udevadm control --property=STARTUP=1 - /sbin/udevadm trigger + /sbin/udevadm trigger --action=add stat_done fi @@ -89,7 +89,7 @@ run_hook sysinit_udevlaunched if /bin/pidof -o %PPID /sbin/udevd >/dev/null; then stat_busy "Triggering UDev uevents" /sbin/udevadm control --property=STARTUP=1 - /sbin/udevadm trigger + /sbin/udevadm trigger --action=add stat_done fi |