diff options
Diffstat (limited to 'appliance')
-rwxr-xr-x | appliance/init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appliance/init b/appliance/init index 9ecf007f..c622788c 100755 --- a/appliance/init +++ b/appliance/init @@ -10,7 +10,7 @@ mkdir -p /sysroot mount -t proc /proc /proc mount -t sysfs /sys /sys -if [ -x /etc/init.d/udev ]; then +if [ ! -L /etc/init.d/udev -a -x /etc/init.d/udev ]; then if type service >/dev/null 2>&1; then service udev start else |