summaryrefslogtreecommitdiff
path: root/modules.d/90dmsquash-live/check
blob: 54e5007207c522cdb18753b80dcc53c3d4197d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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