diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2011-05-09 04:10:32 -0300 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2011-05-09 14:08:35 +0200 |
commit | 8ffdc007c28346ba0a733dbcdba62f91d23ce353 (patch) | |
tree | 8a7e4aa8d19d1d14dc6e76d994d2788f6a2bbed2 | |
parent | b329364663801e609a56f2f6a19d53bf5c754873 (diff) |
Fix copy&paste /dev/.udev -> /run/udev
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Signed-off-by: Tom Gundersen <teg@jklm.no>
-rwxr-xr-x | rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -376,7 +376,7 @@ set_consolefont # When the rules are generated before /etc is mounted rw they are saved to /run, # we therefore need to copy this from /run to /etc. This functionality is going away one day. for f in cd net; do - [[ -f /dev/.udev/tmp-rules--70-persistent-$f.rules ]] || continue + [[ -f /run/udev/tmp-rules--70-persistent-$f.rules ]] || continue stat_busy "Adding persistent $f udev rules" /bin/cat "/run/udev/tmp-rules--70-persistent-$f.rules" >> "/etc/udev/rules.d/70-persistent-$f.rules" stat_done |