From: Richard Jones Date: Mon, 22 Jun 2009 15:43:42 +0000 (+0100) Subject: Issue MAKEDEV commands in a loop (RHBZ#507374). X-Git-Tag: 1.0.51~2 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=6f63b699aa03271468f4af9f90933e2d8dbd3db0 Issue MAKEDEV commands in a loop (RHBZ#507374). --- diff --git a/appliance/init b/appliance/init index 41ce916..96d785c 100755 --- a/appliance/init +++ b/appliance/init @@ -3,8 +3,12 @@ echo Starting /init script ... PATH=/sbin:/usr/sbin:$PATH mount -t tmpfs none /dev mkdir /dev/pts /dev/shm /dev/mapper -MAKEDEV mem null port zero core full ram tty console fd \ - hda hdb hdc hdd sda sdb sdc sdd loop sd +# Must do each MAKEDEV individually, because if one device fails, +# MAKEDEV will quit without creating the rest (RHBZ#507374). +for dev in mem null port zero core full ram tty console fd \ + hda hdb hdc hdd sda sdb sdc sdd loop sd; do + MAKEDEV $dev ||: +done mknod /dev/ptmx c 5 2; chmod 0666 /dev/ptmx mknod /dev/random c 1 8; chmod 0666 /dev/random mknod /dev/urandom c 1 9; chmod 0444 /dev/urandom