diff --git a/Makefile.in b/Makefile.in index c83afd2d..f45de6c2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1939,7 +1939,8 @@ Python.chroot: glibc.chroot gcc.chroot bzip2.chroot readline.chroot \ pip3 install mdstat==1.0.4 pip3 install py-dmidecode==0.0.2 pip3 install netifaces==0.10.9 - pip3 install deepdiff==3.3.0 + pip3 install ordered-set==3.1 + pip3 install deepdiff==4.0.6 pip3 install pyasn1==0.4.5 pip3 install pycparser==2.19 pip3 install cffi==1.11.5 diff --git a/etc/rc.d/rc.mdraid b/etc/rc.d/rc.mdraid index dc2d2363..3807f7ec 100755 --- a/etc/rc.d/rc.mdraid +++ b/etc/rc.d/rc.mdraid @@ -30,7 +30,7 @@ stop() { md_name="$(echo ${row} | awk '{ print $4 }' | \ cut -d= -f2 | cut -d: -f2)" # Only stop arrays that aren't the ESOS boot media - if ! echo ${md_name} | egrep 'boot|root|conf|logs|' > /dev/null; then + if ! echo ${md_name} | egrep 'boot|root|conf|logs' > /dev/null; then ${MDADM} --stop ${md_path} || exit 1 fi done