> @@ -245,7 +247,7 @@ > firstaidkit firstaidkit-plugin-passwd firstaidkit-plugin-xserver > firstaidkit-gui firstaidkit-plugin-mdadm-conf firstaidkit-plugin-key-recovery volume_key" > > -if [ $ARCH = i386 -o $ARCH = i586 -o $ARCH = x86_64 ]; then > +if [ $ARCH = i386 -o $ARCH = i586 -o $ARCH = i686 -o $ARCH = x86_64 ]; then > PACKAGESRESCUE="$PACKAGESRESCUE gpart grub firstaidkit-plugin-grub" > fi > It'd be really nice if all these things could get rewritten into constructions like: if [[ $ARCH =~ 'i[356]86' || $ARCH == 'x86_64']]; then ... That looks a lot cleaner to me than the ever increasing line of conditionals. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list