Add Alpine Linux as supported for __filesystem.

This commit is contained in:
sparrowhawk 2020-08-06 11:45:05 +02:00
parent 7e1428ab3c
commit 17ab4bd80c
No known key found for this signature in database
GPG Key ID: 68B073C524C4D18A
1 changed files with 4 additions and 4 deletions

View File

@ -18,16 +18,16 @@
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
#
os=$("$__explorer/os")
os=$("${__explorer:?}/os")
if [ -f "$__object/parameter/device" ]; then
if [ -f "${__object:?}/parameter/device" ]; then
blkdev="$(cat "$__object/parameter/device")"
else
blkdev="$__object_id"
blkdev="${__object_id:?}"
fi
case "$os" in
centos|fedora|redhat|suse|gentoo)
alpine|centos|fedora|redhat|suse|gentoo)
if [ ! -x "$(command -v lsblk)" ]; then
echo "lsblk is required for __filesystem type" >&2
exit 1