2015-08-28 14:49:04 +10:00
|
|
|
#!/bin/bash
|
2012-11-15 16:20:32 +13:00
|
|
|
# Copyright 2012 Hewlett-Packard Development Company, L.P.
|
|
|
|
# All Rights Reserved.
|
2013-01-25 14:23:56 -08:00
|
|
|
#
|
2012-11-15 16:20:32 +13:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
2013-01-25 14:23:56 -08:00
|
|
|
#
|
2012-11-15 16:20:32 +13:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-25 14:23:56 -08:00
|
|
|
#
|
2012-11-15 16:20:32 +13:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
2013-06-19 21:26:29 +12:00
|
|
|
source $_LIB/common-defaults
|
2012-11-10 00:04:13 +13:00
|
|
|
# options for create-baremetal-image.sh
|
2013-04-12 10:53:44 +01:00
|
|
|
|
2019-03-17 11:54:38 +02:00
|
|
|
if [ "${DISTRO_NAME}" = "rhel" ] && [ "${DIB_RELEASE}" = "8" ]; then
|
|
|
|
# xfs is the default file-system for RHEL8
|
|
|
|
export DEFAULT_FS_TYPE=xfs
|
|
|
|
else
|
|
|
|
export DEFAULT_FS_TYPE=ext4
|
|
|
|
fi
|
|
|
|
|
|
|
|
export FS_TYPE=${FS_TYPE:-$DEFAULT_FS_TYPE}
|
2012-11-10 00:04:13 +13:00
|
|
|
# Used to set the file extension only at this stage.
|
2015-04-01 20:33:17 +00:00
|
|
|
export IMAGE_TYPE=${IMAGE_TYPE:-qcow2}
|
|
|
|
export IMAGE_NAME=${IMAGE_NAME:-image}
|