diff options
author | greg@kroah.com <greg@kroah.com> | 2004-02-12 23:20:50 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:32:27 -0700 |
commit | 552a4d426f24364a13d92a31bafdb37649fcb0f1 (patch) | |
tree | f52a2d1831d4b9f8a09104835a5453e20b14740b /etc/init.d | |
parent | 66a90217605c149fe06f3edf0f3c491f28e640b6 (diff) |
[PATCH] remove the .udev.tdb when installing or uninstalling to be safe.
Diffstat (limited to 'etc/init.d')
-rw-r--r-- | etc/init.d/udev | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/init.d/udev b/etc/init.d/udev index 437556c3fb..8a29f11975 100644 --- a/etc/init.d/udev +++ b/etc/init.d/udev @@ -51,8 +51,8 @@ case "$1" in fi # remove the database if it is there as we always want to start fresh - if [ -f $udev_root/.udevdb ]; then - rm -f $udev_root/.udevdb + if [ -f $udev_root/.udev.tdb ]; then + rm -f $udev_root/.udev.tdb fi # propogate /udev from /sys - we only need this while we do not |