diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-14 23:18:12 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-14 23:18:12 +0000 |
commit | 6e2f78dfcf8b86b28da34e25f7faba82d1e51618 (patch) | |
tree | d46db67568f28ac0a9bbd699d47fcee66fada1f7 /command-stubs/raidstop-stub | |
parent | 20b9dd22ef215a55030dc7f05d0d040db8f37c2c (diff) | |
download | anaconda-6e2f78dfcf8b86b28da34e25f7faba82d1e51618.tar.gz anaconda-6e2f78dfcf8b86b28da34e25f7faba82d1e51618.tar.xz anaconda-6e2f78dfcf8b86b28da34e25f7faba82d1e51618.zip |
added raidstart and raidstop
Diffstat (limited to 'command-stubs/raidstop-stub')
-rwxr-xr-x | command-stubs/raidstop-stub | 25 |
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:]) |