mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
Bash
Executable File
#!/bin/bash -
|
|
# libguestfs
|
|
# Copyright (C) 2011 Red Hat Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=690819
|
|
# mkfs fails creating a filesystem on a disk device when using a disk
|
|
# with 'ide' interface
|
|
#
|
|
# The 'iface' parameter is now ignored:
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1844341
|
|
|
|
source ./functions.sh
|
|
set -e
|
|
set -x
|
|
|
|
skip_if_skipped
|
|
|
|
rm -f rhbz690819.img
|
|
|
|
guestfish sparse rhbz690819.img 100M
|
|
|
|
guestfish <<EOF
|
|
add rhbz690819.img iface:ide format:raw
|
|
run
|
|
mkfs ext3 /dev/sda
|
|
mount /dev/sda /
|
|
EOF
|
|
|
|
rm rhbz690819.img
|