You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
250 B
13 lines
250 B
![]()
16 years ago
|
#!/bin/sh
|
||
|
|
||
|
# if dmsetup is not installed, then we cannot support fedora/red hat
|
||
|
# style live images
|
||
|
which dmsetup >/dev/null 2>&1 || exit 1
|
||
|
|
||
|
# a live host-only image doesn't really make a lot of sense
|
||
|
if [ "$1" = "-h" ] ; then
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
exit 0
|