Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
updated deepdiff (Python) version to 4.0.6 and added ordered-set (dep…
… for new deepdiff); rc.mdraid: fixed bug in stop()
  • Loading branch information
msmith626 committed Apr 18, 2019
1 parent 661eea0 commit a15151c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile.in
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion etc/rc.d/rc.mdraid
Expand Up @@ -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
Expand Down

0 comments on commit a15151c

Please sign in to comment.