From 6e2f78dfcf8b86b28da34e25f7faba82d1e51618 Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Mon, 14 Feb 2000 23:18:12 +0000 Subject: added raidstart and raidstop --- command-stubs/raidstop-stub | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 command-stubs/raidstop-stub (limited to 'command-stubs/raidstop-stub') 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:]) -- cgit