summaryrefslogtreecommitdiffstats
path: root/command-stubs/raidstop-stub
diff options
context:
space:
mode:
Diffstat (limited to 'command-stubs/raidstop-stub')
-rwxr-xr-xcommand-stubs/raidstop-stub25
1 files changed, 25 insertions, 0 deletions
diff --git a/command-stubs/raidstop-stub b/command-stubs/raidstop-stub
new file mode 100755
index 000000000..7e12d3ac5
--- /dev/null
+++ b/command-stubs/raidstop-stub
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+
+import os
+import sys
+
+# for testing
+if (os.path.exists('rpmmodule')):
+ sys.path.append('rpmmodule')
+ sys.path.append('libfdisk')
+ sys.path.append('balkan')
+ sys.path.append('kudzu')
+ sys.path.append('gnome-map')
+ sys.path.append('isys')
+
+sys.path.append('/usr/lib/anaconda')
+
+import raid
+import isys
+from sys import argv
+
+if len(argv) != 2 or argv[1][:7] != "/dev/md":
+ print "usage: raidstop /dev/md[minornum]"
+ sys.exit(1)
+
+isys.raidstop(argv[1][5:])