Skip to content
Snippets Groups Projects
Commit 4f7c0bab authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Changed mdadm path in RAID test (refs #25198).

parent c06c6122
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ def print_green(string): ...@@ -24,7 +24,7 @@ def print_green(string):
def check_raid(dev): def check_raid(dev):
cmd = 'mdadm -D %s' % dev cmd = '/sbin/mdadm -D %s' % dev
status, output = subprocess.getstatusoutput(cmd) status, output = subprocess.getstatusoutput(cmd)
if status != 0: if status != 0:
print_red('The mdadm command on %s failed:' % dev) print_red('The mdadm command on %s failed:' % dev)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment