Skip to content

Instantly share code, notes, and snippets.

@gdha
Created December 17, 2020 13:05
Show Gist options
  • Save gdha/504ee70b3dda0867f1dfa7298f5604f3 to your computer and use it in GitHub Desktop.
Save gdha/504ee70b3dda0867f1dfa7298f5604f3 to your computer and use it in GitHub Desktop.
rear-ITSGBHHLSP01629.log of the recovery with updated diskrestore.sh
RESCUE ITSGBHHLSP01629:~ # vgs
VG #PV #LV #SN Attr VSize VFree
vg00 2 10 0 wz--n- 54.49g <7.29g
vg01 1 1 0 wz--n- <250.00g 0
vg02 1 1 0 wz--n- <100.00g 0
RESCUE ITSGBHHLSP01629:~ # pvs
PV VG Fmt Attr PSize PFree
/dev/sda2 vg00 lvm2 a-- <44.50g 1.29g
/dev/sdb vg01 lvm2 a-- <250.00g 0
/dev/sdc vg02 lvm2 a-- <100.00g 0
/dev/sde vg00 lvm2 a-- <10.00g <6.00g
RESCUE ITSGBHHLSP01629:/usr/share/rear/layout/prepare/GNU/Linux # diff 110_include_lvm_code.sh 110_include_lvm_code.sh.orig
137d136
< lvm vgremove $vg --force --yes >&2 || true
or more visual in script 110_include_lvm_code.sh:
if [ \$create_volume_group -eq 1 ] ; then
LogPrint "Creating LVM VG '$vg'; Warning: some properties may not be preserved..."
if [ -e "$vgrp" ] ; then
rm -rf "$vgrp"
fi
lvm vgremove $vg --force --yes >&2 || true
lvm vgcreate --physicalextentsize ${extentsize}k $vg ${devices[@]} >&2
lvm vgchange --available y $vg >&2
fi
EOF
}
#!/bin/bash
LogPrint "Start system layout restoration."
mkdir -p /mnt/local
if create_component "vgchange" "rear" ; then
lvm vgchange -a n >/dev/null
component_created "vgchange" "rear"
fi
set -e
set -x
if create_component "/dev/sda" "disk" ; then
# Create /dev/sda (disk)
#
# Code handling disk '/dev/sda'
#
Log "Stop mdadm"
if grep -q md /proc/mdstat 2>/dev/null; then
mdadm --stop -s >&2 || echo "stop mdadm failed"
# Prevent udev waking up mdadm later.
# Reasoning: At least on RHEL6 when parted created a raid partition on disk,
# udev (via /lib/udev/rules.d/65-md-incremental.rules) wakes up mdadm which locks the disk,
# so further parted commands with the disk will fail since the disk is busy now.
# The /lib/udev/rules.d/65-md-incremental.rules detects anaconda (the Red Hat installer),
# and if it find itself running under anaconda, it will not run.
# Accordingly also for other installers (in particular the ReaR installer)
# this rule should not be there (and other Linux distros probably do not have it)
# which means removing it is the right solution to make ReaR work also for RHEL6:
if [ -e /lib/udev/rules.d/65-md-incremental.rules ] ; then
rm -f /lib/udev/rules.d/65-md-incremental.rules || echo "rm 65-md-incremental.rules failed"
fi
fi
Log "Erasing MBR of disk /dev/sda"
dd if=/dev/zero of=/dev/sda bs=512 count=1
sync
create_disk_label /dev/sda msdos
create_disk_partition "/dev/sda" "primary" 1 1048576 537919487
my_udevsettle
parted -s /dev/sda set 1 boot on >&2
my_udevsettle
create_disk_partition "/dev/sda" "primary" 2 537919488 48318382079
my_udevsettle
parted -s /dev/sda set 2 lvm on >&2
my_udevsettle
sleep 1
if ! partprobe -s /dev/sda >&2 ; then
LogPrint 'retrying partprobe /dev/sda after 10 seconds'
sleep 10
if ! partprobe -s /dev/sda >&2 ; then
LogPrint 'retrying partprobe /dev/sda after 1 minute'
sleep 60
if ! partprobe -s /dev/sda >&2 ; then
LogPrint 'partprobe /dev/sda failed, proceeding bona fide'
fi
fi
fi
# Make sure device nodes are visible (eg. in RHEL4)
my_udevtrigger
my_udevsettle
# Clean up transient partitions and resize shrinked ones
delete_dummy_partitions_and_resize_real_ones
#
# End of code handling disk '/dev/sda'
#
component_created "/dev/sda" "disk"
else
LogPrint "Skipping /dev/sda (disk) as it has already been created."
fi
if create_component "/dev/sda1" "part" ; then
# Create /dev/sda1 (part)
component_created "/dev/sda1" "part"
else
LogPrint "Skipping /dev/sda1 (part) as it has already been created."
fi
if create_component "/dev/sda2" "part" ; then
# Create /dev/sda2 (part)
component_created "/dev/sda2" "part"
else
LogPrint "Skipping /dev/sda2 (part) as it has already been created."
fi
if create_component "/dev/sdb" "disk" ; then
# Create /dev/sdb (disk)
#
# Code handling disk '/dev/sdb'
#
Log "Stop mdadm"
if grep -q md /proc/mdstat 2>/dev/null; then
mdadm --stop -s >&2 || echo "stop mdadm failed"
# Prevent udev waking up mdadm later.
# Reasoning: At least on RHEL6 when parted created a raid partition on disk,
# udev (via /lib/udev/rules.d/65-md-incremental.rules) wakes up mdadm which locks the disk,
# so further parted commands with the disk will fail since the disk is busy now.
# The /lib/udev/rules.d/65-md-incremental.rules detects anaconda (the Red Hat installer),
# and if it find itself running under anaconda, it will not run.
# Accordingly also for other installers (in particular the ReaR installer)
# this rule should not be there (and other Linux distros probably do not have it)
# which means removing it is the right solution to make ReaR work also for RHEL6:
if [ -e /lib/udev/rules.d/65-md-incremental.rules ] ; then
rm -f /lib/udev/rules.d/65-md-incremental.rules || echo "rm 65-md-incremental.rules failed"
fi
fi
Log "Erasing MBR of disk /dev/sdb"
dd if=/dev/zero of=/dev/sdb bs=512 count=1
sync
# Make sure device nodes are visible (eg. in RHEL4)
my_udevtrigger
my_udevsettle
# Clean up transient partitions and resize shrinked ones
delete_dummy_partitions_and_resize_real_ones
#
# End of code handling disk '/dev/sdb'
#
component_created "/dev/sdb" "disk"
else
LogPrint "Skipping /dev/sdb (disk) as it has already been created."
fi
if create_component "/dev/sdc" "disk" ; then
# Create /dev/sdc (disk)
#
# Code handling disk '/dev/sdc'
#
Log "Stop mdadm"
if grep -q md /proc/mdstat 2>/dev/null; then
mdadm --stop -s >&2 || echo "stop mdadm failed"
# Prevent udev waking up mdadm later.
# Reasoning: At least on RHEL6 when parted created a raid partition on disk,
# udev (via /lib/udev/rules.d/65-md-incremental.rules) wakes up mdadm which locks the disk,
# so further parted commands with the disk will fail since the disk is busy now.
# The /lib/udev/rules.d/65-md-incremental.rules detects anaconda (the Red Hat installer),
# and if it find itself running under anaconda, it will not run.
# Accordingly also for other installers (in particular the ReaR installer)
# this rule should not be there (and other Linux distros probably do not have it)
# which means removing it is the right solution to make ReaR work also for RHEL6:
if [ -e /lib/udev/rules.d/65-md-incremental.rules ] ; then
rm -f /lib/udev/rules.d/65-md-incremental.rules || echo "rm 65-md-incremental.rules failed"
fi
fi
Log "Erasing MBR of disk /dev/sdc"
dd if=/dev/zero of=/dev/sdc bs=512 count=1
sync
# Make sure device nodes are visible (eg. in RHEL4)
my_udevtrigger
my_udevsettle
# Clean up transient partitions and resize shrinked ones
delete_dummy_partitions_and_resize_real_ones
#
# End of code handling disk '/dev/sdc'
#
component_created "/dev/sdc" "disk"
else
LogPrint "Skipping /dev/sdc (disk) as it has already been created."
fi
if create_component "/dev/sdd" "disk" ; then
# Create /dev/sdd (disk)
#
# Code handling disk '/dev/sdd'
#
Log "Stop mdadm"
if grep -q md /proc/mdstat 2>/dev/null; then
mdadm --stop -s >&2 || echo "stop mdadm failed"
# Prevent udev waking up mdadm later.
# Reasoning: At least on RHEL6 when parted created a raid partition on disk,
# udev (via /lib/udev/rules.d/65-md-incremental.rules) wakes up mdadm which locks the disk,
# so further parted commands with the disk will fail since the disk is busy now.
# The /lib/udev/rules.d/65-md-incremental.rules detects anaconda (the Red Hat installer),
# and if it find itself running under anaconda, it will not run.
# Accordingly also for other installers (in particular the ReaR installer)
# this rule should not be there (and other Linux distros probably do not have it)
# which means removing it is the right solution to make ReaR work also for RHEL6:
if [ -e /lib/udev/rules.d/65-md-incremental.rules ] ; then
rm -f /lib/udev/rules.d/65-md-incremental.rules || echo "rm 65-md-incremental.rules failed"
fi
fi
Log "Erasing MBR of disk /dev/sdd"
dd if=/dev/zero of=/dev/sdd bs=512 count=1
sync
# Make sure device nodes are visible (eg. in RHEL4)
my_udevtrigger
my_udevsettle
# Clean up transient partitions and resize shrinked ones
delete_dummy_partitions_and_resize_real_ones
#
# End of code handling disk '/dev/sdd'
#
component_created "/dev/sdd" "disk"
else
LogPrint "Skipping /dev/sdd (disk) as it has already been created."
fi
if create_component "/dev/sde" "disk" ; then
# Create /dev/sde (disk)
#
# Code handling disk '/dev/sde'
#
Log "Stop mdadm"
if grep -q md /proc/mdstat 2>/dev/null; then
mdadm --stop -s >&2 || echo "stop mdadm failed"
# Prevent udev waking up mdadm later.
# Reasoning: At least on RHEL6 when parted created a raid partition on disk,
# udev (via /lib/udev/rules.d/65-md-incremental.rules) wakes up mdadm which locks the disk,
# so further parted commands with the disk will fail since the disk is busy now.
# The /lib/udev/rules.d/65-md-incremental.rules detects anaconda (the Red Hat installer),
# and if it find itself running under anaconda, it will not run.
# Accordingly also for other installers (in particular the ReaR installer)
# this rule should not be there (and other Linux distros probably do not have it)
# which means removing it is the right solution to make ReaR work also for RHEL6:
if [ -e /lib/udev/rules.d/65-md-incremental.rules ] ; then
rm -f /lib/udev/rules.d/65-md-incremental.rules || echo "rm 65-md-incremental.rules failed"
fi
fi
Log "Erasing MBR of disk /dev/sde"
dd if=/dev/zero of=/dev/sde bs=512 count=1
sync
# Make sure device nodes are visible (eg. in RHEL4)
my_udevtrigger
my_udevsettle
# Clean up transient partitions and resize shrinked ones
delete_dummy_partitions_and_resize_real_ones
#
# End of code handling disk '/dev/sde'
#
component_created "/dev/sde" "disk"
else
LogPrint "Skipping /dev/sde (disk) as it has already been created."
fi
if create_component "pv:/dev/sdc" "lvmdev" ; then
# Create pv:/dev/sdc (lvmdev)
LogPrint "Creating LVM PV /dev/sdc"
lvm vgchange -a n vg02 || true
lvm pvcreate -ff --yes -v --uuid "UHT8T8-DKQi-UcDg-TTIJ-9IuI-DamD-OkHz3J" --norestorefile /dev/sdc >&2
component_created "pv:/dev/sdc" "lvmdev"
else
LogPrint "Skipping pv:/dev/sdc (lvmdev) as it has already been created."
fi
if create_component "pv:/dev/sda2" "lvmdev" ; then
# Create pv:/dev/sda2 (lvmdev)
LogPrint "Creating LVM PV /dev/sda2"
lvm vgchange -a n vg00 || true
lvm pvcreate -ff --yes -v --uuid "DKN7Dd-D1H2-Kqed-AyaS-z84k-NFPo-NnzUkN" --norestorefile /dev/sda2 >&2
component_created "pv:/dev/sda2" "lvmdev"
else
LogPrint "Skipping pv:/dev/sda2 (lvmdev) as it has already been created."
fi
if create_component "pv:/dev/sde" "lvmdev" ; then
# Create pv:/dev/sde (lvmdev)
LogPrint "Creating LVM PV /dev/sde"
lvm vgchange -a n vg00 || true
lvm pvcreate -ff --yes -v --uuid "MTm8Ad-YHtu-emgm-nqi8-Z6FW-8t2Y-RMlwrz" --norestorefile /dev/sde >&2
component_created "pv:/dev/sde" "lvmdev"
else
LogPrint "Skipping pv:/dev/sde (lvmdev) as it has already been created."
fi
if create_component "pv:/dev/sdb" "lvmdev" ; then
# Create pv:/dev/sdb (lvmdev)
LogPrint "Creating LVM PV /dev/sdb"
lvm vgchange -a n vg01 || true
lvm pvcreate -ff --yes -v --uuid "ph05Xa-NkTS-8sEa-K5At-pA8E-Q9hH-GUI63l" --norestorefile /dev/sdb >&2
component_created "pv:/dev/sdb" "lvmdev"
else
LogPrint "Skipping pv:/dev/sdb (lvmdev) as it has already been created."
fi
if create_component "/dev/vg02" "lvmgrp" ; then
# Create /dev/vg02 (lvmgrp)
create_volume_group=1
create_logical_volumes=1
create_thin_volumes_only=0
if [ $create_volume_group -eq 1 ] ; then
LogPrint "Creating LVM VG 'vg02'; Warning: some properties may not be preserved..."
if [ -e "/dev/vg02" ] ; then
rm -rf "/dev/vg02"
fi
lvm vgremove vg02 --force --yes >&2 || true
lvm vgcreate --physicalextentsize 4096k vg02 /dev/sdc >&2
lvm vgchange --available y vg02 >&2
fi
component_created "/dev/vg02" "lvmgrp"
else
LogPrint "Skipping /dev/vg02 (lvmgrp) as it has already been created."
fi
if create_component "/dev/vg00" "lvmgrp" ; then
# Create /dev/vg00 (lvmgrp)
create_volume_group=1
create_logical_volumes=1
create_thin_volumes_only=0
if [ $create_volume_group -eq 1 ] ; then
LogPrint "Creating LVM VG 'vg00'; Warning: some properties may not be preserved..."
if [ -e "/dev/vg00" ] ; then
rm -rf "/dev/vg00"
fi
lvm vgremove vg00 --force --yes >&2 || true
lvm vgcreate --physicalextentsize 4096k vg00 /dev/sda2 /dev/sde >&2
lvm vgchange --available y vg00 >&2
fi
component_created "/dev/vg00" "lvmgrp"
else
LogPrint "Skipping /dev/vg00 (lvmgrp) as it has already been created."
fi
if create_component "/dev/vg01" "lvmgrp" ; then
# Create /dev/vg01 (lvmgrp)
create_volume_group=1
create_logical_volumes=1
create_thin_volumes_only=0
if [ $create_volume_group -eq 1 ] ; then
LogPrint "Creating LVM VG 'vg01'; Warning: some properties may not be preserved..."
if [ -e "/dev/vg01" ] ; then
rm -rf "/dev/vg01"
fi
lvm vgremove vg01 --force --yes >&2 || true
lvm vgcreate --physicalextentsize 4096k vg01 /dev/sdb >&2
lvm vgchange --available y vg01 >&2
fi
component_created "/dev/vg01" "lvmgrp"
else
LogPrint "Skipping /dev/vg01 (lvmgrp) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_audit" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_audit (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_audit'; Warning: some properties may not be preserved..."
lvm lvcreate -L 4294967296b -n lv_audit vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_audit" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_audit (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_home" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_home (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_home'; Warning: some properties may not be preserved..."
lvm lvcreate -L 4294967296b -n lv_home vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_home" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_home (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_log" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_log (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_log'; Warning: some properties may not be preserved..."
lvm lvcreate -L 4294967296b -n lv_log vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_log" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_log (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_openv" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_openv (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_openv'; Warning: some properties may not be preserved..."
lvm lvcreate -L 5586812928b -n lv_openv vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_openv" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_openv (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_opt" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_opt (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_opt'; Warning: some properties may not be preserved..."
lvm lvcreate -L 5368709120b -n lv_opt vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_opt" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_opt (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_root" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_root (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_root'; Warning: some properties may not be preserved..."
lvm lvcreate -L 8589934592b -n lv_root vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_root" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_root (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_tanium" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_tanium (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_tanium'; Warning: some properties may not be preserved..."
lvm lvcreate -L 3221225472b -n lv_tanium vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_tanium" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_tanium (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_tmp" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_tmp (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_tmp'; Warning: some properties may not be preserved..."
lvm lvcreate -L 2147483648b -n lv_tmp vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_tmp" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_tmp (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-lv_var" "lvmvol" ; then
# Create /dev/mapper/vg00-lv_var (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/lv_var'; Warning: some properties may not be preserved..."
lvm lvcreate -L 8589934592b -n lv_var vg00 <<<y
fi
component_created "/dev/mapper/vg00-lv_var" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-lv_var (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg00-swap" "lvmvol" ; then
# Create /dev/mapper/vg00-swap (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg00/swap'; Warning: some properties may not be preserved..."
lvm lvcreate -L 4294967296b -n swap vg00 <<<y
fi
component_created "/dev/mapper/vg00-swap" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg00-swap (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg01-lv00" "lvmvol" ; then
# Create /dev/mapper/vg01-lv00 (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg01/lv00'; Warning: some properties may not be preserved..."
lvm lvcreate -L 268431261696b -n lv00 vg01 <<<y
fi
component_created "/dev/mapper/vg01-lv00" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg01-lv00 (lvmvol) as it has already been created."
fi
if create_component "/dev/mapper/vg02-lv00" "lvmvol" ; then
# Create /dev/mapper/vg02-lv00 (lvmvol)
if [ "$create_logical_volumes" -eq 1 ] && [ "$create_thin_volumes_only" -eq 0 ] ; then
LogPrint "Creating LVM volume 'vg02/lv00'; Warning: some properties may not be preserved..."
lvm lvcreate -L 107369988096b -n lv00 vg02 <<<y
fi
component_created "/dev/mapper/vg02-lv00" "lvmvol"
else
LogPrint "Skipping /dev/mapper/vg02-lv00 (lvmvol) as it has already been created."
fi
if create_component "fs:/" "fs" ; then
# Create fs:/ (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_root' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/' on '/dev/mapper/vg00-lv_root'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_root' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_root || wipefs --all /dev/mapper/vg00-lv_root || dd if=/dev/zero of=/dev/mapper/vg00-lv_root bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U 570493f8-d3b9-4110-9fda-f39c13e5d33d -F /dev/mapper/vg00-lv_root >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/mapper/vg00-lv_root >&2
tune2fs -U 570493f8-d3b9-4110-9fda-f39c13e5d33d /dev/mapper/vg00-lv_root >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_root >&2
LogPrint "Mounting filesystem /"
mkdir -p /mnt/local/
mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_root /mnt/local/
component_created "fs:/" "fs"
else
LogPrint "Skipping fs:/ (fs) as it has already been created."
fi
if create_component "fs:/home" "fs" ; then
# Create fs:/home (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_home' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/home' on '/dev/mapper/vg00-lv_home'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_home' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_home || wipefs --all /dev/mapper/vg00-lv_home || dd if=/dev/zero of=/dev/mapper/vg00-lv_home bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U 05c6e67f-b1c6-43f5-95fb-07dd66ddbc79 -F /dev/mapper/vg00-lv_home >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/mapper/vg00-lv_home >&2
tune2fs -U 05c6e67f-b1c6-43f5-95fb-07dd66ddbc79 /dev/mapper/vg00-lv_home >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_home >&2
LogPrint "Mounting filesystem /home"
mkdir -p /mnt/local/home
mount -o rw,dev,relatime,data=ordered /dev/mapper/vg00-lv_home /mnt/local/home
component_created "fs:/home" "fs"
else
LogPrint "Skipping fs:/home (fs) as it has already been created."
fi
if create_component "fs:/usr/openv" "fs" ; then
# Create fs:/usr/openv (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_openv' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/usr/openv' on '/dev/mapper/vg00-lv_openv'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_openv' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_openv || wipefs --all /dev/mapper/vg00-lv_openv || dd if=/dev/zero of=/dev/mapper/vg00-lv_openv bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16365 -U 7a7217a0-ee6d-4606-a594-33225cd18e20 -F /dev/mapper/vg00-lv_openv >&2 ; then
mkfs -t ext3 -b 4096 -i 16365 -F /dev/mapper/vg00-lv_openv >&2
tune2fs -U 7a7217a0-ee6d-4606-a594-33225cd18e20 /dev/mapper/vg00-lv_openv >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_openv >&2
LogPrint "Mounting filesystem /usr/openv"
mkdir -p /mnt/local/usr/openv
mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_openv /mnt/local/usr/openv
component_created "fs:/usr/openv" "fs"
else
LogPrint "Skipping fs:/usr/openv (fs) as it has already been created."
fi
if create_component "fs:/opt" "fs" ; then
# Create fs:/opt (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_opt' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/opt' on '/dev/mapper/vg00-lv_opt'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_opt' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_opt || wipefs --all /dev/mapper/vg00-lv_opt || dd if=/dev/zero of=/dev/mapper/vg00-lv_opt bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U eca735a8-927d-4c24-ac7b-72ae0846aa81 -F /dev/mapper/vg00-lv_opt >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/mapper/vg00-lv_opt >&2
tune2fs -U eca735a8-927d-4c24-ac7b-72ae0846aa81 /dev/mapper/vg00-lv_opt >&2
fi
tune2fs -m 5 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_opt >&2
LogPrint "Mounting filesystem /opt"
mkdir -p /mnt/local/opt
mount -o rw,nosuid,dev,relatime,data=ordered /dev/mapper/vg00-lv_opt /mnt/local/opt
component_created "fs:/opt" "fs"
else
LogPrint "Skipping fs:/opt (fs) as it has already been created."
fi
if create_component "fs:/opt/Tanium" "fs" ; then
# Create fs:/opt/Tanium (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_tanium' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/opt/Tanium' on '/dev/mapper/vg00-lv_tanium'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_tanium' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_tanium || wipefs --all /dev/mapper/vg00-lv_tanium || dd if=/dev/zero of=/dev/mapper/vg00-lv_tanium bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U dc1ed788-208b-4007-be9c-d97b8f30812c -F /dev/mapper/vg00-lv_tanium >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/mapper/vg00-lv_tanium >&2
tune2fs -U dc1ed788-208b-4007-be9c-d97b8f30812c /dev/mapper/vg00-lv_tanium >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_tanium >&2
LogPrint "Mounting filesystem /opt/Tanium"
mkdir -p /mnt/local/opt/Tanium
mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_tanium /mnt/local/opt/Tanium
component_created "fs:/opt/Tanium" "fs"
else
LogPrint "Skipping fs:/opt/Tanium (fs) as it has already been created."
fi
if create_component "fs:/tmp" "fs" ; then
# Create fs:/tmp (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_tmp' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/tmp' on '/dev/mapper/vg00-lv_tmp'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_tmp' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_tmp || wipefs --all /dev/mapper/vg00-lv_tmp || dd if=/dev/zero of=/dev/mapper/vg00-lv_tmp bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U d74c63ed-f72e-400a-954f-164acd8b5f25 -F /dev/mapper/vg00-lv_tmp >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/mapper/vg00-lv_tmp >&2
tune2fs -U d74c63ed-f72e-400a-954f-164acd8b5f25 /dev/mapper/vg00-lv_tmp >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_tmp >&2
LogPrint "Mounting filesystem /tmp"
mkdir -p /mnt/local/tmp
mount -o rw,nosuid,dev,relatime,data=ordered /dev/mapper/vg00-lv_tmp /mnt/local/tmp
component_created "fs:/tmp" "fs"
else
LogPrint "Skipping fs:/tmp (fs) as it has already been created."
fi
if create_component "fs:/var" "fs" ; then
# Create fs:/var (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_var' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/var' on '/dev/mapper/vg00-lv_var'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_var' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_var || wipefs --all /dev/mapper/vg00-lv_var || dd if=/dev/zero of=/dev/mapper/vg00-lv_var bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U a166eb11-535c-409f-9bfe-d7d2ba025d1c -F /dev/mapper/vg00-lv_var >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/mapper/vg00-lv_var >&2
tune2fs -U a166eb11-535c-409f-9bfe-d7d2ba025d1c /dev/mapper/vg00-lv_var >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_var >&2
LogPrint "Mounting filesystem /var"
mkdir -p /mnt/local/var
mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_var /mnt/local/var
component_created "fs:/var" "fs"
else
LogPrint "Skipping fs:/var (fs) as it has already been created."
fi
if create_component "fs:/var/log" "fs" ; then
# Create fs:/var/log (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_log' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/var/log' on '/dev/mapper/vg00-lv_log'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_log' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_log || wipefs --all /dev/mapper/vg00-lv_log || dd if=/dev/zero of=/dev/mapper/vg00-lv_log bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U 27c80cff-f6b3-4079-8d5f-b29b315be900 -F /dev/mapper/vg00-lv_log >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/mapper/vg00-lv_log >&2
tune2fs -U 27c80cff-f6b3-4079-8d5f-b29b315be900 /dev/mapper/vg00-lv_log >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_log >&2
LogPrint "Mounting filesystem /var/log"
mkdir -p /mnt/local/var/log
mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_log /mnt/local/var/log
component_created "fs:/var/log" "fs"
else
LogPrint "Skipping fs:/var/log (fs) as it has already been created."
fi
if create_component "fs:/var/log/audit" "fs" ; then
# Create fs:/var/log/audit (fs)
# Wait until udev had created '/dev/mapper/vg00-lv_audit' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/var/log/audit' on '/dev/mapper/vg00-lv_audit'.'
# Using wipefs to cleanup '/dev/mapper/vg00-lv_audit' before creating filesystem.
wipefs --all --force /dev/mapper/vg00-lv_audit || wipefs --all /dev/mapper/vg00-lv_audit || dd if=/dev/zero of=/dev/mapper/vg00-lv_audit bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U 8e92b10f-1065-46ff-ae41-eb9dcf594a25 -F /dev/mapper/vg00-lv_audit >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/mapper/vg00-lv_audit >&2
tune2fs -U 8e92b10f-1065-46ff-ae41-eb9dcf594a25 /dev/mapper/vg00-lv_audit >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_audit >&2
LogPrint "Mounting filesystem /var/log/audit"
mkdir -p /mnt/local/var/log/audit
mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_audit /mnt/local/var/log/audit
component_created "fs:/var/log/audit" "fs"
else
LogPrint "Skipping fs:/var/log/audit (fs) as it has already been created."
fi
if create_component "fs:/app/util" "fs" ; then
# Create fs:/app/util (fs)
# Wait until udev had created '/dev/mapper/vg01-lv00' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/app/util' on '/dev/mapper/vg01-lv00'.'
# Using wipefs to cleanup '/dev/mapper/vg01-lv00' before creating filesystem.
wipefs --all --force /dev/mapper/vg01-lv00 || wipefs --all /dev/mapper/vg01-lv00 || dd if=/dev/zero of=/dev/mapper/vg01-lv00 bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16383 -U fa4b1411-af38-4fe6-866e-9a9e746ff4fa -F /dev/mapper/vg01-lv00 >&2 ; then
mkfs -t ext3 -b 4096 -i 16383 -F /dev/mapper/vg01-lv00 >&2
tune2fs -U fa4b1411-af38-4fe6-866e-9a9e746ff4fa /dev/mapper/vg01-lv00 >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg01-lv00 >&2
LogPrint "Mounting filesystem /app/util"
mkdir -p /mnt/local/app/util
mount -o rw,relatime,data=ordered /dev/mapper/vg01-lv00 /mnt/local/app/util
component_created "fs:/app/util" "fs"
else
LogPrint "Skipping fs:/app/util (fs) as it has already been created."
fi
if create_component "fs:/app/gtsc" "fs" ; then
# Create fs:/app/gtsc (fs)
# Wait until udev had created '/dev/mapper/vg02-lv00' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/app/gtsc' on '/dev/mapper/vg02-lv00'.'
# Using wipefs to cleanup '/dev/mapper/vg02-lv00' before creating filesystem.
wipefs --all --force /dev/mapper/vg02-lv00 || wipefs --all /dev/mapper/vg02-lv00 || dd if=/dev/zero of=/dev/mapper/vg02-lv00 bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16383 -U a344c150-c2d8-485e-97d7-8243a609d89e -F /dev/mapper/vg02-lv00 >&2 ; then
mkfs -t ext3 -b 4096 -i 16383 -F /dev/mapper/vg02-lv00 >&2
tune2fs -U a344c150-c2d8-485e-97d7-8243a609d89e /dev/mapper/vg02-lv00 >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg02-lv00 >&2
LogPrint "Mounting filesystem /app/gtsc"
mkdir -p /mnt/local/app/gtsc
mount -o rw,relatime,data=ordered /dev/mapper/vg02-lv00 /mnt/local/app/gtsc
component_created "fs:/app/gtsc" "fs"
else
LogPrint "Skipping fs:/app/gtsc (fs) as it has already been created."
fi
if create_component "fs:/boot" "fs" ; then
# Create fs:/boot (fs)
# Wait until udev had created '/dev/sda1' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'ext3' with mount point '/boot' on '/dev/sda1'.'
# Using wipefs to cleanup '/dev/sda1' before creating filesystem.
wipefs --all --force /dev/sda1 || wipefs --all /dev/sda1 || dd if=/dev/zero of=/dev/sda1 bs=512 count=1 || true
# Try 'mkfs -U' to create the filesystem with initially correct UUID
# but if that fails assume it failed because of missing support for '-U'
# (e.g. in RHEL 5 it fails, see https://github.com/rear/rear/issues/890)
# then fall back to using mkfs without '-U' plus 'tune2fs/tune4fs -U'
if ! mkfs -t ext3 -b 4096 -i 16384 -U 3b9c84f9-1cf9-480c-8d46-26f8dd7b7e70 -F /dev/sda1 >&2 ; then
mkfs -t ext3 -b 4096 -i 16384 -F /dev/sda1 >&2
tune2fs -U 3b9c84f9-1cf9-480c-8d46-26f8dd7b7e70 /dev/sda1 >&2
fi
tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/sda1 >&2
LogPrint "Mounting filesystem /boot"
mkdir -p /mnt/local/boot
mount -o rw,relatime,data=ordered /dev/sda1 /mnt/local/boot
component_created "fs:/boot" "fs"
else
LogPrint "Skipping fs:/boot (fs) as it has already been created."
fi
if create_component "fs:/app/gtsc/docker" "fs" ; then
# Create fs:/app/gtsc/docker (fs)
# Wait until udev had created '/dev/sdd' before creating a filesystem there:
my_udevsettle
LogPrint 'Creating filesystem of type 'xfs' with mount point '/app/gtsc/docker' on '/dev/sdd'.'
# Using wipefs to cleanup '/dev/sdd' before creating filesystem.
wipefs --all --force /dev/sdd || wipefs --all /dev/sdd || dd if=/dev/zero of=/dev/sdd bs=512 count=1 || true
if ! mkfs.xfs -f -m uuid=e3fbb87a-2b3d-4f5f-8245-af9320935d7f -i size=512 -d agcount=4 -s size=512 -i attr=2 -i projid32bit=1 -m crc=1 -m finobt=0 -b size=4096 -i maxpct=25 -d sunit=0 -d swidth=0 -l version=2 -l lazy-count=1 -n size=4096 -n version=2 -r extsize=4096 /dev/sdd >&2; then
mkfs.xfs -f -i size=512 -d agcount=4 -s size=512 -i attr=2 -i projid32bit=1 -m crc=1 -m finobt=0 -b size=4096 -i maxpct=25 -d sunit=0 -d swidth=0 -l version=2 -l lazy-count=1 -n size=4096 -n version=2 -r extsize=4096 /dev/sdd >&2
xfs_admin -U e3fbb87a-2b3d-4f5f-8245-af9320935d7f /dev/sdd >&2
xfs_repair /dev/sdd
fi
LogPrint "Mounting filesystem /app/gtsc/docker"
mkdir -p /mnt/local/app/gtsc/docker
mount -o rw,relatime,attr2,inode64,noquota /dev/sdd /mnt/local/app/gtsc/docker
component_created "fs:/app/gtsc/docker" "fs"
else
LogPrint "Skipping fs:/app/gtsc/docker (fs) as it has already been created."
fi
if create_component "swap:/dev/mapper/vg00-swap" "swap" ; then
# Create swap:/dev/mapper/vg00-swap (swap)
LogPrint "Creating swap on /dev/mapper/vg00-swap"
mkswap -U 109e1047-d5bb-4bd1-ad17-f013910321a7 /dev/mapper/vg00-swap >&2
component_created "swap:/dev/mapper/vg00-swap" "swap"
else
LogPrint "Skipping swap:/dev/mapper/vg00-swap (swap) as it has already been created."
fi
set +x
set +e
LogPrint "Disk layout created."
2020-12-17 09:38:48.514862535 Relax-and-Recover 2.4 / Git
2020-12-17 09:38:48.516102964 Command line options: /bin/rear -v recover
2020-12-17 09:38:48.517260372 Using log file: /var/log/rear/rear-ITSGBHHLSP01629.log
2020-12-17 09:38:48.518687826 Including /etc/rear/os.conf
2020-12-17 09:38:48.522036809 Including conf/Linux-i386.conf
2020-12-17 09:38:48.523456549 Including conf/GNU/Linux.conf
2020-12-17 09:38:48.528216963 Including /etc/rear/site.conf
2020-12-17 09:38:48.529665885 Including /etc/rear/local.conf
2020-12-17 09:38:48.531320959 Including /etc/rear/rescue.conf
2020-12-17 09:38:48.534045644 ======================
2020-12-17 09:38:48.535207815 Running 'init' stage
2020-12-17 09:38:48.536355054 ======================
2020-12-17 09:38:48.543048656 Including init/default/005_verify_os_conf.sh
2020-12-17 09:38:48.546827010 Including init/default/010_set_drlm_env.sh
2020-12-17 09:38:48.550635486 Including init/default/030_update_recovery_system.sh
2020-12-17 09:38:48.554367530 Including init/default/050_check_rear_recover_mode.sh
2020-12-17 09:38:48.555724227 Running workflow recover within the ReaR rescue/recovery system
2020-12-17 09:38:48.557449367 Finished running 'init' stage in 0 seconds
2020-12-17 09:38:48.565731619 Using build area '/tmp/rear.sdeAhmyZOA3CnWU'
mkdir: created directory '/tmp/rear.sdeAhmyZOA3CnWU/rootfs'
mkdir: created directory '/tmp/rear.sdeAhmyZOA3CnWU/tmp'
2020-12-17 09:38:48.569310122 Running recover workflow
2020-12-17 09:38:48.570619636 ======================
2020-12-17 09:38:48.571733632 Running 'setup' stage
2020-12-17 09:38:48.572855703 ======================
2020-12-17 09:38:48.579712871 Including setup/default/005_ssh_agent_start.sh
2020-12-17 09:38:48.583022527 Starting up ssh-agent
Agent pid 940
2020-12-17 09:38:48.592629423 Including setup/default/010_pre_recovery_script.sh
2020-12-17 09:38:48.593923560 Finished running 'setup' stage in 0 seconds
2020-12-17 09:38:48.595254207 ======================
2020-12-17 09:38:48.596513297 Running 'verify' stage
2020-12-17 09:38:48.597788649 ======================
2020-12-17 09:38:48.605633332 Including verify/default/020_cciss_scsi_engage.sh
2020-12-17 09:38:48.610991503 Including verify/default/020_translate_url.sh
2020-12-17 09:38:48.615205718 Including verify/default/030_translate_tape.sh
2020-12-17 09:38:48.621105262 Including verify/default/040_validate_variables.sh
2020-12-17 09:38:48.625195798 Including verify/NETFS/default/050_check_NETFS_requirements.sh
2020-12-17 09:38:48.630155930 Skipping 'ping' test for host 'itsbebevnobkup2.jnj.com' in BACKUP_URL 'nfs://itsbebevnobkup2.jnj.com/vol/itsbebevnobkup2_linux/linux_images_1/itsgbhhlsp01629.jnj.com'
2020-12-17 09:38:48.644010949 Including verify/default/050_create_mappings_dir.sh
2020-12-17 09:38:48.647979974 Including verify/GNU/Linux/050_sane_recovery_check.sh
2020-12-17 09:38:48.651862459 Including verify/NETFS/default/050_start_required_nfs_daemons.sh
2020-12-17 09:38:48.655594513 Starting required daemons for NFS: RPC portmapper (portmap or rpcbind) and rpc.statd if available.
/usr/share/rear/lib/_input-output-functions.sh: line 331: type: portmap: not found
2020-12-17 09:38:48.662726214 Started RPC portmapper 'rpcbind'.
2020-12-17 09:38:48.681875058 RPC portmapper 'rpcbind' available.
2020-12-17 09:38:48.700942629 Started rpc.statd.
2020-12-17 09:38:48.705199545 RPC status rpc.statd available.
rpc.idmapd: conf_set: duplicate tag [General]:Domain, ignoring...
2020-12-17 09:38:48.709238165 Starting rpc.idmapd failed.
mount: unknown filesystem type 'nfsd'
2020-12-17 09:38:48.806977727 Including verify/NETFS/default/060_mount_NETFS_path.sh
mkdir: created directory '/tmp/rear.sdeAhmyZOA3CnWU/outputfs'
2020-12-17 09:38:48.815044388 Mounting with 'mount -v -t nfs -o nfsvers=3,nolock itsbebevnobkup2.jnj.com:/vol/itsbebevnobkup2_linux/linux_images_1/itsgbhhlsp01629.jnj.com /tmp/rear.sdeAhmyZOA3CnWU/outputfs'
mount.nfs: trying 10.166.30.34 prog 100003 vers 3 prot TCP port 2049
mount.nfs: trying 10.166.30.34 prog 100005 vers 3 prot UDP port 4046
mount.nfs: timeout set for Thu Dec 17 09:40:48 2020
mount.nfs: trying text-based options 'nfsvers=3,nolock,addr=10.166.30.34'
mount.nfs: prog 100003, trying vers=3, prot=6
mount.nfs: prog 100005, trying vers=3, prot=17
2020-12-17 09:38:48.968293211 Including verify/NETFS/default/070_set_backup_archive.sh
2020-12-17 09:38:48.974936673 Using backup archive '/tmp/rear.sdeAhmyZOA3CnWU/outputfs/image/backup.tar.gz'
2020-12-17 09:38:49.021656555 Including verify/NETFS/default/090_set_readonly_options.sh
2020-12-17 09:38:49.025694174 Including verify/GNU/Linux/230_storage_and_network_modules.sh
2020-12-17 09:38:49.027796340 Including storage drivers
2020-12-17 09:38:49.033465407 Including network drivers
2020-12-17 09:38:49.040126753 Including crypto drivers
2020-12-17 09:38:49.044380610 Including virtualization drivers
2020-12-17 09:38:49.048441452 Including additional drivers
2020-12-17 09:38:49.055235792 Including verify/GNU/Linux/260_recovery_storage_drivers.sh
2020-12-17 09:38:49.139712088 No driver migration: '/tmp/rear.sdeAhmyZOA3CnWU/tmp/storage_drivers' and '/var/lib/rear/recovery/storage_drivers' are the same
2020-12-17 09:38:49.144089681 Including verify/NETFS/default/550_check_backup_archive.sh
2020-12-17 09:38:49.159820954 Calculating backup archive size
2020-12-17 09:38:49.163083411 Backup archive size is 4.5G /tmp/rear.sdeAhmyZOA3CnWU/outputfs/image/backup.tar.gz (compressed)
2020-12-17 09:38:49.167469041 Including verify/NETFS/default/600_check_encryption_key.sh
2020-12-17 09:38:49.171495040 Including verify/NETFS/default/980_umount_NETFS_dir.sh
2020-12-17 09:38:49.175082509 Unmounting '/tmp/rear.sdeAhmyZOA3CnWU/outputfs'
/tmp/rear.sdeAhmyZOA3CnWU/outputfs: nfs mount point detected
/tmp/rear.sdeAhmyZOA3CnWU/outputfs: umounted
rmdir: removing directory, '/tmp/rear.sdeAhmyZOA3CnWU/outputfs'
2020-12-17 09:38:49.221116521 Finished running 'verify' stage in 1 seconds
2020-12-17 09:38:49.222424508 ======================
2020-12-17 09:38:49.223720051 Running 'layout/prepare' stage
2020-12-17 09:38:49.224958273 ======================
2020-12-17 09:38:49.232589929 Including layout/prepare/default/010_prepare_files.sh
2020-12-17 09:38:49.239319642 Including layout/prepare/GNU/Linux/100_include_partition_code.sh
2020-12-17 09:38:49.250041427 Including layout/prepare/GNU/Linux/110_include_lvm_code.sh
2020-12-17 09:38:49.260958847 Including layout/prepare/GNU/Linux/120_include_raid_code.sh
/usr/share/rear/lib/_input-output-functions.sh: line 331: type: mdadm: not found
2020-12-17 09:38:49.265150812 Including layout/prepare/GNU/Linux/130_include_filesystem_code.sh
2020-12-17 09:38:49.270231484 Including layout/prepare/GNU/Linux/130_include_mount_filesystem_code.sh
2020-12-17 09:38:49.274553143 Including layout/prepare/GNU/Linux/130_include_mount_subvolumes_code.sh
2020-12-17 09:38:49.280750419 Including layout/prepare/GNU/Linux/140_include_swap_code.sh
2020-12-17 09:38:49.289334536 Including layout/prepare/GNU/Linux/150_include_drbd_code.sh
2020-12-17 09:38:49.293627027 Including layout/prepare/GNU/Linux/160_include_luks_code.sh
2020-12-17 09:38:49.298057906 Including layout/prepare/GNU/Linux/170_include_hpraid_code.sh
/usr/share/rear/lib/_input-output-functions.sh: line 331: type: hpacucli: not found
/usr/share/rear/lib/_input-output-functions.sh: line 331: type: hpssacli: not found
/usr/share/rear/lib/_input-output-functions.sh: line 331: type: ssacli: not found
2020-12-17 09:38:49.302541992 Including layout/prepare/GNU/Linux/180_include_opaldisk_code.sh
2020-12-17 09:38:49.307131815 Including layout/prepare/default/200_recreate_hpraid.sh
2020-12-17 09:38:49.312713206 Including layout/prepare/GNU/Linux/210_load_multipath.sh
2020-12-17 09:38:49.318201998 Including layout/prepare/default/250_compare_disks.sh
2020-12-17 09:38:49.319805439 Comparing disks
2020-12-17 09:38:49.336601157 Ambiguous possible target disks need manual configuration (more than one with same size found)
2020-12-17 09:38:49.338438328 Switching to manual disk layout configuration
2020-12-17 09:38:49.342723753 Including layout/prepare/default/270_overrule_migration_mode.sh
2020-12-17 09:38:49.348550653 Including layout/prepare/default/300_map_disks.sh
2020-12-17 09:38:49.590911585 Using /dev/sda (same name and same size) for recreating /dev/sda
2020-12-17 09:38:49.600669427 Using /dev/sdb (same name and same size) for recreating /dev/sdb
2020-12-17 09:38:49.610243675 Using /dev/sdc (same name and same size) for recreating /dev/sdc
2020-12-17 09:38:49.620036560 Using /dev/sdd (same name and same size) for recreating /dev/sdd
2020-12-17 09:38:49.629786966 Using /dev/sde (same name and same size) for recreating /dev/sde
2020-12-17 09:38:49.639789149 Current disk mapping table (source -> target):
2020-12-17 09:38:49.643307283 /dev/sda /dev/sda
/dev/sdb /dev/sdb
/dev/sdc /dev/sdc
/dev/sdd /dev/sdd
/dev/sde /dev/sde
2020-12-17 09:38:49.646493290 UserInput: called in /usr/share/rear/layout/prepare/default/300_map_disks.sh line 211
2020-12-17 09:38:49.649997336 UserInput: Default input in choices - using choice number 1 as default input
2020-12-17 09:38:49.651661745 Confirm or edit the disk mapping
2020-12-17 09:38:49.653276577 1) Confirm disk mapping and continue 'rear recover'
2020-12-17 09:38:49.654825880 2) Edit disk mapping (/var/lib/rear/layout/disk_mappings)
2020-12-17 09:38:49.656363167 3) Use Relax-and-Recover shell and return back to here
2020-12-17 09:38:49.657931574 4) Abort 'rear recover'
2020-12-17 09:38:49.659563630 (default '1' timeout 300 seconds)
2020-12-17 09:38:53.083798975 UserInput: 'read' got as user input '1'
2020-12-17 09:38:53.087804912 User confirmed disk mapping
2020-12-17 09:38:53.099338744 Including layout/prepare/default/310_remove_exclusions.sh
2020-12-17 09:38:53.107338776 Including layout/prepare/default/320_apply_mappings.sh
2020-12-17 09:38:53.110745234 Completely identical layout mapping in /var/lib/rear/layout/disk_mappings
2020-12-17 09:38:53.115789009 Including layout/prepare/default/420_autoresize_last_partitions.sh
48318382080
268435456000
107374182400
429496729600
10737418240
2020-12-17 09:38:53.142398666 Including layout/prepare/default/430_autoresize_all_partitions.sh
2020-12-17 09:38:53.146764667 Including layout/prepare/default/500_confirm_layout_file.sh
2020-12-17 09:38:53.151262306 UserInput: called in /usr/share/rear/layout/prepare/default/500_confirm_layout_file.sh line 26
2020-12-17 09:38:53.155023244 UserInput: Default input in choices - using choice number 1 as default input
2020-12-17 09:38:53.156737697 Confirm or edit the disk layout file
2020-12-17 09:38:53.158366120 1) Confirm disk layout and continue 'rear recover'
2020-12-17 09:38:53.159957689 2) Edit disk layout (/var/lib/rear/layout/disklayout.conf)
2020-12-17 09:38:53.161818849 3) View disk layout (/var/lib/rear/layout/disklayout.conf)
2020-12-17 09:38:53.163402313 4) View original disk space usage (/var/lib/rear/layout/config/df.txt)
2020-12-17 09:38:53.164927766 5) Use Relax-and-Recover shell and return back to here
2020-12-17 09:38:53.166479173 6) Abort 'rear recover'
2020-12-17 09:38:53.168037690 (default '1' timeout 300 seconds)
2020-12-17 09:38:55.732966636 UserInput: 'read' got as user input '1'
2020-12-17 09:38:55.737126901 User confirmed disk layout file
2020-12-17 09:38:55.741742065 Including layout/prepare/default/510_list_dependencies.sh
2020-12-17 09:38:55.986103123 Including layout/prepare/default/520_exclude_components.sh
2020-12-17 09:38:55.992246705 Including layout/prepare/default/540_generate_device_code.sh
2020-12-17 09:38:56.097138238 No partitions on device /dev/sdb.
2020-12-17 09:38:56.119867901 No partitions on device /dev/sdc.
2020-12-17 09:38:56.141584877 No partitions on device /dev/sdd.
2020-12-17 09:38:56.163376874 No partitions on device /dev/sde.
2020-12-17 09:38:56.574788153 Begin create_fs( fs:/ )
2020-12-17 09:38:56.580015105 Begin mount_fs( fs:/ )
2020-12-17 09:38:56.584054036 End mount_fs( fs:/ )
2020-12-17 09:38:56.585505560 End create_fs( fs:/ )
2020-12-17 09:38:56.609012517 Begin create_fs( fs:/home )
2020-12-17 09:38:56.614676824 Begin mount_fs( fs:/home )
2020-12-17 09:38:56.618794621 End mount_fs( fs:/home )
2020-12-17 09:38:56.620336977 End create_fs( fs:/home )
2020-12-17 09:38:56.648312988 Begin create_fs( fs:/usr/openv )
2020-12-17 09:38:56.653801171 Begin mount_fs( fs:/usr/openv )
2020-12-17 09:38:56.657997441 End mount_fs( fs:/usr/openv )
2020-12-17 09:38:56.659494922 End create_fs( fs:/usr/openv )
2020-12-17 09:38:56.686844635 Begin create_fs( fs:/opt )
2020-12-17 09:38:56.692296591 Begin mount_fs( fs:/opt )
2020-12-17 09:38:56.696539834 End mount_fs( fs:/opt )
2020-12-17 09:38:56.698158891 End create_fs( fs:/opt )
2020-12-17 09:38:56.727146343 Begin create_fs( fs:/opt/Tanium )
2020-12-17 09:38:56.732721572 Begin mount_fs( fs:/opt/Tanium )
2020-12-17 09:38:56.737049370 End mount_fs( fs:/opt/Tanium )
2020-12-17 09:38:56.738598120 End create_fs( fs:/opt/Tanium )
2020-12-17 09:38:56.765526494 Begin create_fs( fs:/tmp )
2020-12-17 09:38:56.771143174 Begin mount_fs( fs:/tmp )
2020-12-17 09:38:56.775449290 End mount_fs( fs:/tmp )
2020-12-17 09:38:56.777011210 End create_fs( fs:/tmp )
2020-12-17 09:38:56.803563283 Begin create_fs( fs:/var )
2020-12-17 09:38:56.809272985 Begin mount_fs( fs:/var )
2020-12-17 09:38:56.813442778 End mount_fs( fs:/var )
2020-12-17 09:38:56.814976693 End create_fs( fs:/var )
2020-12-17 09:38:56.837191883 Begin create_fs( fs:/var/log )
2020-12-17 09:38:56.842679374 Begin mount_fs( fs:/var/log )
2020-12-17 09:38:56.846882853 End mount_fs( fs:/var/log )
2020-12-17 09:38:56.848475381 End create_fs( fs:/var/log )
2020-12-17 09:38:56.865476914 Begin create_fs( fs:/var/log/audit )
2020-12-17 09:38:56.870936361 Begin mount_fs( fs:/var/log/audit )
2020-12-17 09:38:56.875201995 End mount_fs( fs:/var/log/audit )
2020-12-17 09:38:56.876737278 End create_fs( fs:/var/log/audit )
2020-12-17 09:38:56.891753439 Begin create_fs( fs:/app/util )
2020-12-17 09:38:56.897187300 Begin mount_fs( fs:/app/util )
2020-12-17 09:38:56.901347926 End mount_fs( fs:/app/util )
2020-12-17 09:38:56.902876189 End create_fs( fs:/app/util )
2020-12-17 09:38:56.918125995 Begin create_fs( fs:/app/gtsc )
2020-12-17 09:38:56.923588978 Begin mount_fs( fs:/app/gtsc )
2020-12-17 09:38:56.927782637 End mount_fs( fs:/app/gtsc )
2020-12-17 09:38:56.929305034 End create_fs( fs:/app/gtsc )
2020-12-17 09:38:56.944767659 Begin create_fs( fs:/boot )
2020-12-17 09:38:56.950339982 Begin mount_fs( fs:/boot )
2020-12-17 09:38:56.954595567 End mount_fs( fs:/boot )
2020-12-17 09:38:56.956159715 End create_fs( fs:/boot )
2020-12-17 09:38:56.972472226 Begin create_fs( fs:/app/gtsc/docker )
2020-12-17 09:38:57.141543465 Begin mount_fs( fs:/app/gtsc/docker )
2020-12-17 09:38:57.146726838 End mount_fs( fs:/app/gtsc/docker )
2020-12-17 09:38:57.148361268 End create_fs( fs:/app/gtsc/docker )
2020-12-17 09:38:57.177244180 Including layout/prepare/default/550_finalize_script.sh
2020-12-17 09:38:57.183219759 Including layout/prepare/default/600_show_unprocessed.sh
2020-12-17 09:38:57.190527798 Including layout/prepare/default/610_exclude_from_restore.sh
2020-12-17 09:38:57.192096564 Finished running 'layout/prepare' stage in 8 seconds
2020-12-17 09:38:57.193451757 ======================
2020-12-17 09:38:57.194763547 Running 'layout/recreate' stage
2020-12-17 09:38:57.196045579 ======================
2020-12-17 09:38:57.203754877 Including layout/recreate/default/100_confirm_layout_code.sh
2020-12-17 09:38:57.208347822 UserInput: called in /usr/share/rear/layout/recreate/default/100_confirm_layout_code.sh line 26
2020-12-17 09:38:57.212194278 UserInput: Default input in choices - using choice number 1 as default input
2020-12-17 09:38:57.213955644 Confirm or edit the disk recreation script
2020-12-17 09:38:57.215697422 1) Confirm disk recreation script and continue 'rear recover'
2020-12-17 09:38:57.217556463 2) Edit disk recreation script (/var/lib/rear/layout/diskrestore.sh)
2020-12-17 09:38:57.223895979 3) View disk recreation script (/var/lib/rear/layout/diskrestore.sh)
2020-12-17 09:38:57.225863456 4) View original disk space usage (/var/lib/rear/layout/config/df.txt)
2020-12-17 09:38:57.227597145 5) Use Relax-and-Recover shell and return back to here
2020-12-17 09:38:57.229280230 6) Abort 'rear recover'
2020-12-17 09:38:57.231005864 (default '1' timeout 300 seconds)
2020-12-17 09:39:01.867902802 UserInput: 'read' got as user input '3'
2020-12-17 09:39:21.146346106 UserInput: called in /usr/share/rear/layout/recreate/default/100_confirm_layout_code.sh line 26
2020-12-17 09:39:21.150816909 UserInput: Default input in choices - using choice number 1 as default input
2020-12-17 09:39:21.152610921 Confirm or edit the disk recreation script
2020-12-17 09:39:21.154381768 1) Confirm disk recreation script and continue 'rear recover'
2020-12-17 09:39:21.156124129 2) Edit disk recreation script (/var/lib/rear/layout/diskrestore.sh)
2020-12-17 09:39:21.157873735 3) View disk recreation script (/var/lib/rear/layout/diskrestore.sh)
2020-12-17 09:39:21.159607110 4) View original disk space usage (/var/lib/rear/layout/config/df.txt)
2020-12-17 09:39:21.161310626 5) Use Relax-and-Recover shell and return back to here
2020-12-17 09:39:21.163014261 6) Abort 'rear recover'
2020-12-17 09:39:21.164677778 (default '1' timeout 300 seconds)
2020-12-17 09:39:24.011827116 UserInput: 'read' got as user input '1'
2020-12-17 09:39:24.016200663 User confirmed disk recreation script
2020-12-17 09:39:24.021891010 Including layout/recreate/default/120_confirm_wipedisk_disks.sh
2020-12-17 09:39:24.028490526 UserInput: called in /usr/share/rear/layout/recreate/default/120_confirm_wipedisk_disks.sh line 33
2020-12-17 09:39:24.032221881 UserInput: Default input in choices - using choice number 1 as default input
2020-12-17 09:39:24.033925277 Disks to be overwritten: /dev/sda
2020-12-17 09:39:24.035609559 1) Confirm disks to be completely overwritten and continue 'rear recover'
2020-12-17 09:39:24.037242989 2) Use Relax-and-Recover shell and return back to here
2020-12-17 09:39:24.038896826 3) Abort 'rear recover'
2020-12-17 09:39:24.040543716 (default '1' timeout 300 seconds)
2020-12-17 09:39:30.083259229 UserInput: 'read' got as user input '1'
2020-12-17 09:39:30.087939550 User confirmed disks to be overwritten
2020-12-17 09:39:30.092979941 Including layout/recreate/default/150_wipe_disks.sh
2020-12-17 09:39:30.094782571 Block devices structure on the unchanged replacement hardware before the disks /dev/sda will be wiped (lsblk):
2020-12-17 09:39:30.102327379 NAME KNAME PKNAME TRAN TYPE FSTYPE SIZE MOUNTPOINT
/dev/sda /dev/sda disk 45G
|-/dev/sda1 /dev/sda1 /dev/sda part ext3 512M
`-/dev/sda2 /dev/sda2 /dev/sda part LVM2_member 44.5G
/dev/sdb /dev/sdb disk LVM2_member 250G
/dev/sdc /dev/sdc disk LVM2_member 100G
/dev/sdd /dev/sdd disk xfs 400G
/dev/sde /dev/sde disk LVM2_member 10G
/dev/sr0 /dev/sr0 sata rom iso9660 262.9M
WARNING: PV /dev/sda2 is used by VG vg00.
WARNING: Wiping physical volume label from /dev/sda2 of volume group "vg00".
Labels on physical volume "/dev/sda2" successfully wiped.
2020-12-17 09:39:30.227600729 Wiping child devices of /dev/sda in reverse ordering: /dev/sda2 /dev/sda1 /dev/sda
16+0 records in
16+0 records out
16777216 bytes (17 MB) copied, 0.023577 s, 712 MB/s
16+0 records in
16+0 records out
16777216 bytes (17 MB) copied, 0.0182302 s, 920 MB/s
16+0 records in
16+0 records out
16777216 bytes (17 MB) copied, 0.0166204 s, 1.0 GB/s
16+0 records in
16+0 records out
16777216 bytes (17 MB) copied, 0.0168021 s, 999 MB/s
16+0 records in
16+0 records out
16777216 bytes (17 MB) copied, 0.0171424 s, 979 MB/s
16+0 records in
16+0 records out
16777216 bytes (17 MB) copied, 0.0185525 s, 904 MB/s
2020-12-17 09:39:30.358641121 Remaining block devices structure after the disks /dev/sda were wiped (lsblk):
2020-12-17 09:39:30.365368535 NAME KNAME PKNAME TRAN TYPE FSTYPE SIZE MOUNTPOINT
/dev/sda /dev/sda disk 45G
/dev/sdb /dev/sdb disk LVM2_member 250G
/dev/sdc /dev/sdc disk LVM2_member 100G
/dev/sdd /dev/sdd disk xfs 400G
/dev/sde /dev/sde disk LVM2_member 10G
/dev/sr0 /dev/sr0 sata rom iso9660 262.9M
2020-12-17 09:39:30.370230263 Including layout/recreate/default/200_run_layout_code.sh
2020-12-17 09:39:30.374184783 Start system layout restoration.
Couldn't find device with uuid DKN7Dd-D1H2-Kqed-AyaS-z84k-NFPo-NnzUkN.
+++ create_component /dev/sda disk
+++ local device=/dev/sda
+++ local type=disk
+++ local touchfile=disk--dev-sda
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sda ']'
+++ return 0
+++ Log 'Stop mdadm'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:30.402559373 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:30.402559373 Stop mdadm'
2020-12-17 09:39:30.402559373 Stop mdadm
+++ grep -q md /proc/mdstat
+++ Log 'Erasing MBR of disk /dev/sda'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:30.405460272 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:30.405460272 Erasing MBR of disk /dev/sda'
2020-12-17 09:39:30.405460272 Erasing MBR of disk /dev/sda
+++ dd if=/dev/zero of=/dev/sda bs=512 count=1
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.00069092 s, 741 kB/s
+++ sync
+++ create_disk_label /dev/sda msdos
+++ local disk=/dev/sda label=msdos
+++ [[ -n '' ]]
+++ current_disk=/dev/sda
+++ [[ -n '' ]]
+++ disk_label=msdos
+++ LogPrint 'Disk '\''/dev/sda'\'': creating '\''msdos'\'' partition table'
+++ Log 'Disk '\''/dev/sda'\'': creating '\''msdos'\'' partition table'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:30.409864474 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:30.409864474 Disk '\''/dev/sda'\'': creating '\''msdos'\'' partition table'
2020-12-17 09:39:30.409864474 Disk '/dev/sda': creating 'msdos' partition table
+++ Print 'Disk '\''/dev/sda'\'': creating '\''msdos'\'' partition table'
+++ test 1
+++ echo -e 'Disk '\''/dev/sda'\'': creating '\''msdos'\'' partition table'
+++ parted -s /dev/sda mklabel msdos
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ create_disk_partition /dev/sda primary 1 1048576 537919487
+++ local disk=/dev/sda name=primary number=1 startB=1048576 endB=537919487
+++ [[ -n /dev/sda ]]
+++ [[ /dev/sda != \/\d\e\v\/\s\d\a ]]
+++ current_disk=/dev/sda
+++ [[ ! -n msdos ]]
+++ '[' msdos == msdos ']'
+++ [[ 1 -le last_partition_number ]]
+++ [[ 0 -eq 0 ]]
+++ LogPrint 'Disk '\''/dev/sda'\'': creating partition number 1 with name '\''primary'\'''
+++ Log 'Disk '\''/dev/sda'\'': creating partition number 1 with name '\''primary'\'''
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:30.420172226 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:30.420172226 Disk '\''/dev/sda'\'': creating partition number 1 with name '\''primary'\'''
2020-12-17 09:39:30.420172226 Disk '/dev/sda': creating partition number 1 with name 'primary'
+++ Print 'Disk '\''/dev/sda'\'': creating partition number 1 with name '\''primary'\'''
+++ test 1
+++ echo -e 'Disk '\''/dev/sda'\'': creating partition number 1 with name '\''primary'\'''
+++ [[ ! -n 537919487 ]]
+++ parted -s /dev/sda mkpart primary 1048576B 537919487B
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ last_partition_number=1
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ parted -s /dev/sda set 1 boot on
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ create_disk_partition /dev/sda primary 2 537919488 48318382079
+++ local disk=/dev/sda name=primary number=2 startB=537919488 endB=48318382079
+++ [[ -n /dev/sda ]]
+++ [[ /dev/sda != \/\d\e\v\/\s\d\a ]]
+++ current_disk=/dev/sda
+++ [[ ! -n msdos ]]
+++ '[' msdos == msdos ']'
+++ [[ 2 -le last_partition_number ]]
+++ [[ 0 -eq 0 ]]
+++ LogPrint 'Disk '\''/dev/sda'\'': creating partition number 2 with name '\''primary'\'''
+++ Log 'Disk '\''/dev/sda'\'': creating partition number 2 with name '\''primary'\'''
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:30.478397774 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:30.478397774 Disk '\''/dev/sda'\'': creating partition number 2 with name '\''primary'\'''
2020-12-17 09:39:30.478397774 Disk '/dev/sda': creating partition number 2 with name 'primary'
+++ Print 'Disk '\''/dev/sda'\'': creating partition number 2 with name '\''primary'\'''
+++ test 1
+++ echo -e 'Disk '\''/dev/sda'\'': creating partition number 2 with name '\''primary'\'''
+++ [[ ! -n 48318382079 ]]
+++ parted -s /dev/sda mkpart primary 537919488B 48318382079B
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ last_partition_number=2
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ parted -s /dev/sda set 2 lvm on
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ sleep 1
+++ partprobe -s /dev/sda
/dev/sda: msdos partitions 1 2
+++ my_udevtrigger
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm trigger
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ delete_dummy_partitions_and_resize_real_ones
+++ [[ 0 -eq 0 ]]
+++ partitions_to_resize=()
+++ current_disk=
+++ disk_label=
+++ last_partition_number=0
+++ return 0
+++ component_created /dev/sda disk
+++ local device=/dev/sda
+++ local type=disk
+++ local touchfile=disk--dev-sda
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sda
+++ create_component /dev/sda1 part
+++ local device=/dev/sda1
+++ local type=part
+++ local touchfile=part--dev-sda1
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/part--dev-sda1 ']'
+++ return 0
+++ component_created /dev/sda1 part
+++ local device=/dev/sda1
+++ local type=part
+++ local touchfile=part--dev-sda1
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/part--dev-sda1
+++ create_component /dev/sda2 part
+++ local device=/dev/sda2
+++ local type=part
+++ local touchfile=part--dev-sda2
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/part--dev-sda2 ']'
+++ return 0
+++ component_created /dev/sda2 part
+++ local device=/dev/sda2
+++ local type=part
+++ local touchfile=part--dev-sda2
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/part--dev-sda2
+++ create_component /dev/sdb disk
+++ local device=/dev/sdb
+++ local type=disk
+++ local touchfile=disk--dev-sdb
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sdb ']'
+++ return 0
+++ Log 'Stop mdadm'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:34.646778845 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:34.646778845 Stop mdadm'
2020-12-17 09:39:34.646778845 Stop mdadm
+++ grep -q md /proc/mdstat
+++ Log 'Erasing MBR of disk /dev/sdb'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:34.649952218 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:34.649952218 Erasing MBR of disk /dev/sdb'
2020-12-17 09:39:34.649952218 Erasing MBR of disk /dev/sdb
+++ dd if=/dev/zero of=/dev/sdb bs=512 count=1
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.00572538 s, 89.4 kB/s
+++ sync
+++ my_udevtrigger
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm trigger
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ delete_dummy_partitions_and_resize_real_ones
+++ [[ 0 -eq 0 ]]
+++ partitions_to_resize=()
+++ current_disk=
+++ disk_label=
+++ last_partition_number=0
+++ return 0
+++ component_created /dev/sdb disk
+++ local device=/dev/sdb
+++ local type=disk
+++ local touchfile=disk--dev-sdb
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sdb
+++ create_component /dev/sdc disk
+++ local device=/dev/sdc
+++ local type=disk
+++ local touchfile=disk--dev-sdc
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sdc ']'
+++ return 0
+++ Log 'Stop mdadm'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:37.730912316 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:37.730912316 Stop mdadm'
2020-12-17 09:39:37.730912316 Stop mdadm
+++ grep -q md /proc/mdstat
+++ Log 'Erasing MBR of disk /dev/sdc'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:37.734278881 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:37.734278881 Erasing MBR of disk /dev/sdc'
2020-12-17 09:39:37.734278881 Erasing MBR of disk /dev/sdc
+++ dd if=/dev/zero of=/dev/sdc bs=512 count=1
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.00723819 s, 70.7 kB/s
+++ sync
+++ my_udevtrigger
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm trigger
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ delete_dummy_partitions_and_resize_real_ones
+++ [[ 0 -eq 0 ]]
+++ partitions_to_resize=()
+++ current_disk=
+++ disk_label=
+++ last_partition_number=0
+++ return 0
+++ component_created /dev/sdc disk
+++ local device=/dev/sdc
+++ local type=disk
+++ local touchfile=disk--dev-sdc
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sdc
+++ create_component /dev/sdd disk
+++ local device=/dev/sdd
+++ local type=disk
+++ local touchfile=disk--dev-sdd
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sdd ']'
+++ return 0
+++ Log 'Stop mdadm'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:40.821139467 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:40.821139467 Stop mdadm'
2020-12-17 09:39:40.821139467 Stop mdadm
+++ grep -q md /proc/mdstat
+++ Log 'Erasing MBR of disk /dev/sdd'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:40.824223784 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:40.824223784 Erasing MBR of disk /dev/sdd'
2020-12-17 09:39:40.824223784 Erasing MBR of disk /dev/sdd
+++ dd if=/dev/zero of=/dev/sdd bs=512 count=1
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.00644382 s, 79.5 kB/s
+++ sync
+++ my_udevtrigger
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm trigger
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ delete_dummy_partitions_and_resize_real_ones
+++ [[ 0 -eq 0 ]]
+++ partitions_to_resize=()
+++ current_disk=
+++ disk_label=
+++ last_partition_number=0
+++ return 0
+++ component_created /dev/sdd disk
+++ local device=/dev/sdd
+++ local type=disk
+++ local touchfile=disk--dev-sdd
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sdd
+++ create_component /dev/sde disk
+++ local device=/dev/sde
+++ local type=disk
+++ local touchfile=disk--dev-sde
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sde ']'
+++ return 0
+++ Log 'Stop mdadm'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:43.907850726 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:43.907850726 Stop mdadm'
2020-12-17 09:39:43.907850726 Stop mdadm
+++ grep -q md /proc/mdstat
+++ Log 'Erasing MBR of disk /dev/sde'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:43.910963135 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:43.910963135 Erasing MBR of disk /dev/sde'
2020-12-17 09:39:43.910963135 Erasing MBR of disk /dev/sde
+++ dd if=/dev/zero of=/dev/sde bs=512 count=1
1+0 records in
1+0 records out
512 bytes (512 B) copied, 0.00657813 s, 77.8 kB/s
+++ sync
+++ my_udevtrigger
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm trigger
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ delete_dummy_partitions_and_resize_real_ones
+++ [[ 0 -eq 0 ]]
+++ partitions_to_resize=()
+++ current_disk=
+++ disk_label=
+++ last_partition_number=0
+++ return 0
+++ component_created /dev/sde disk
+++ local device=/dev/sde
+++ local type=disk
+++ local touchfile=disk--dev-sde
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/disk--dev-sde
+++ create_component pv:/dev/sdc lvmdev
+++ local device=pv:/dev/sdc
+++ local type=lvmdev
+++ local touchfile=lvmdev-pv:-dev-sdc
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmdev-pv:-dev-sdc ']'
+++ return 0
+++ LogPrint 'Creating LVM PV /dev/sdc'
+++ Log 'Creating LVM PV /dev/sdc'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:46.996122016 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:46.996122016 Creating LVM PV /dev/sdc'
2020-12-17 09:39:46.996122016 Creating LVM PV /dev/sdc
+++ Print 'Creating LVM PV /dev/sdc'
+++ test 1
+++ echo -e 'Creating LVM PV /dev/sdc'
+++ lvm vgchange -a n vg02
0 logical volume(s) in volume group "vg02" now active
+++ lvm pvcreate -ff --yes -v --uuid UHT8T8-DKQi-UcDg-TTIJ-9IuI-DamD-OkHz3J --norestorefile /dev/sdc
Couldn't find device with uuid DKN7Dd-D1H2-Kqed-AyaS-z84k-NFPo-NnzUkN.
There are 1 physical volumes missing.
Couldn't find device with uuid DKN7Dd-D1H2-Kqed-AyaS-z84k-NFPo-NnzUkN.
There are 1 physical volumes missing.
Wiping signatures on new PV /dev/sdc.
Set up physical volume for "/dev/sdc" with 209715200 available sectors.
Zeroing start of device /dev/sdc.
Writing physical volume data to disk "/dev/sdc".
Physical volume "/dev/sdc" successfully created.
+++ component_created pv:/dev/sdc lvmdev
+++ local device=pv:/dev/sdc
+++ local type=lvmdev
+++ local touchfile=lvmdev-pv:-dev-sdc
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmdev-pv:-dev-sdc
+++ create_component pv:/dev/sda2 lvmdev
+++ local device=pv:/dev/sda2
+++ local type=lvmdev
+++ local touchfile=lvmdev-pv:-dev-sda2
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmdev-pv:-dev-sda2 ']'
+++ return 0
+++ LogPrint 'Creating LVM PV /dev/sda2'
+++ Log 'Creating LVM PV /dev/sda2'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.046292697 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.046292697 Creating LVM PV /dev/sda2'
2020-12-17 09:39:47.046292697 Creating LVM PV /dev/sda2
+++ Print 'Creating LVM PV /dev/sda2'
+++ test 1
+++ echo -e 'Creating LVM PV /dev/sda2'
+++ lvm vgchange -a n vg00
Couldn't find device with uuid DKN7Dd-D1H2-Kqed-AyaS-z84k-NFPo-NnzUkN.
0 logical volume(s) in volume group "vg00" now active
+++ lvm pvcreate -ff --yes -v --uuid DKN7Dd-D1H2-Kqed-AyaS-z84k-NFPo-NnzUkN --norestorefile /dev/sda2
Couldn't find device with uuid DKN7Dd-D1H2-Kqed-AyaS-z84k-NFPo-NnzUkN.
There are 1 physical volumes missing.
Couldn't find device with uuid DKN7Dd-D1H2-Kqed-AyaS-z84k-NFPo-NnzUkN.
There are 1 physical volumes missing.
Wiping signatures on new PV /dev/sda2.
Set up physical volume for "/dev/sda2" with 93321216 available sectors.
Zeroing start of device /dev/sda2.
Writing physical volume data to disk "/dev/sda2".
Physical volume "/dev/sda2" successfully created.
+++ component_created pv:/dev/sda2 lvmdev
+++ local device=pv:/dev/sda2
+++ local type=lvmdev
+++ local touchfile=lvmdev-pv:-dev-sda2
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmdev-pv:-dev-sda2
+++ create_component pv:/dev/sde lvmdev
+++ local device=pv:/dev/sde
+++ local type=lvmdev
+++ local touchfile=lvmdev-pv:-dev-sde
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmdev-pv:-dev-sde ']'
+++ return 0
+++ LogPrint 'Creating LVM PV /dev/sde'
+++ Log 'Creating LVM PV /dev/sde'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.096323937 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.096323937 Creating LVM PV /dev/sde'
2020-12-17 09:39:47.096323937 Creating LVM PV /dev/sde
+++ Print 'Creating LVM PV /dev/sde'
+++ test 1
+++ echo -e 'Creating LVM PV /dev/sde'
+++ lvm vgchange -a n vg00
WARNING: Inconsistent metadata found for VG vg00 - updating to use version 11
WARNING: Repairing Physical Volume /dev/sda2 that is in Volume Group vg00 but not marked as used.
WARNING: Inconsistent metadata found for VG vg00 - updating to use version 12
0 logical volume(s) in volume group "vg00" now active
+++ lvm pvcreate -ff --yes -v --uuid MTm8Ad-YHtu-emgm-nqi8-Z6FW-8t2Y-RMlwrz --norestorefile /dev/sde
Wiping signatures on new PV /dev/sde.
Set up physical volume for "/dev/sde" with 20971520 available sectors.
Zeroing start of device /dev/sde.
Writing physical volume data to disk "/dev/sde".
Physical volume "/dev/sde" successfully created.
+++ component_created pv:/dev/sde lvmdev
+++ local device=pv:/dev/sde
+++ local type=lvmdev
+++ local touchfile=lvmdev-pv:-dev-sde
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmdev-pv:-dev-sde
+++ create_component pv:/dev/sdb lvmdev
+++ local device=pv:/dev/sdb
+++ local type=lvmdev
+++ local touchfile=lvmdev-pv:-dev-sdb
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmdev-pv:-dev-sdb ']'
+++ return 0
+++ LogPrint 'Creating LVM PV /dev/sdb'
+++ Log 'Creating LVM PV /dev/sdb'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.155409419 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.155409419 Creating LVM PV /dev/sdb'
2020-12-17 09:39:47.155409419 Creating LVM PV /dev/sdb
+++ Print 'Creating LVM PV /dev/sdb'
+++ test 1
+++ echo -e 'Creating LVM PV /dev/sdb'
+++ lvm vgchange -a n vg01
0 logical volume(s) in volume group "vg01" now active
+++ lvm pvcreate -ff --yes -v --uuid ph05Xa-NkTS-8sEa-K5At-pA8E-Q9hH-GUI63l --norestorefile /dev/sdb
WARNING: Inconsistent metadata found for VG vg00 - updating to use version 13
WARNING: Repairing Physical Volume /dev/sde that is in Volume Group vg00 but not marked as used.
WARNING: Inconsistent metadata found for VG vg00 - updating to use version 14
Wiping signatures on new PV /dev/sdb.
Set up physical volume for "/dev/sdb" with 524288000 available sectors.
Zeroing start of device /dev/sdb.
Writing physical volume data to disk "/dev/sdb".
Physical volume "/dev/sdb" successfully created.
+++ component_created pv:/dev/sdb lvmdev
+++ local device=pv:/dev/sdb
+++ local type=lvmdev
+++ local touchfile=lvmdev-pv:-dev-sdb
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmdev-pv:-dev-sdb
+++ create_component /dev/vg02 lvmgrp
+++ local device=/dev/vg02
+++ local type=lvmgrp
+++ local touchfile=lvmgrp--dev-vg02
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmgrp--dev-vg02 ']'
+++ return 0
+++ create_volume_group=1
+++ create_logical_volumes=1
+++ create_thin_volumes_only=0
+++ '[' 1 -eq 1 ']'
+++ LogPrint 'Creating LVM VG '\''vg02'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM VG '\''vg02'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.208424523 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.208424523 Creating LVM VG '\''vg02'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.208424523 Creating LVM VG 'vg02'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM VG '\''vg02'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM VG '\''vg02'\''; Warning: some properties may not be preserved...'
+++ '[' -e /dev/vg02 ']'
+++ lvm vgremove vg02 --force --yes
Volume group "vg02" not found
Cannot process volume group vg02
+++ true
+++ lvm vgcreate --physicalextentsize 4096k vg02 /dev/sdc
Volume group "vg02" successfully created
+++ lvm vgchange --available y vg02
0 logical volume(s) in volume group "vg02" now active
+++ component_created /dev/vg02 lvmgrp
+++ local device=/dev/vg02
+++ local type=lvmgrp
+++ local touchfile=lvmgrp--dev-vg02
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmgrp--dev-vg02
+++ create_component /dev/vg00 lvmgrp
+++ local device=/dev/vg00
+++ local type=lvmgrp
+++ local touchfile=lvmgrp--dev-vg00
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmgrp--dev-vg00 ']'
+++ return 0
+++ create_volume_group=1
+++ create_logical_volumes=1
+++ create_thin_volumes_only=0
+++ '[' 1 -eq 1 ']'
+++ LogPrint 'Creating LVM VG '\''vg00'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM VG '\''vg00'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.279489846 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.279489846 Creating LVM VG '\''vg00'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.279489846 Creating LVM VG 'vg00'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM VG '\''vg00'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM VG '\''vg00'\''; Warning: some properties may not be preserved...'
+++ '[' -e /dev/vg00 ']'
+++ lvm vgremove vg00 --force --yes
Logical volume "lv_audit" successfully removed
Logical volume "lv_home" successfully removed
Logical volume "lv_log" successfully removed
Logical volume "lv_openv" successfully removed
Logical volume "lv_opt" successfully removed
Logical volume "lv_root" successfully removed
Logical volume "lv_tanium" successfully removed
Logical volume "lv_tmp" successfully removed
Logical volume "lv_var" successfully removed
Logical volume "swap" successfully removed
Volume group "vg00" successfully removed
+++ lvm vgcreate --physicalextentsize 4096k vg00 /dev/sda2 /dev/sde
Volume group "vg00" successfully created
+++ lvm vgchange --available y vg00
0 logical volume(s) in volume group "vg00" now active
+++ component_created /dev/vg00 lvmgrp
+++ local device=/dev/vg00
+++ local type=lvmgrp
+++ local touchfile=lvmgrp--dev-vg00
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmgrp--dev-vg00
+++ create_component /dev/vg01 lvmgrp
+++ local device=/dev/vg01
+++ local type=lvmgrp
+++ local touchfile=lvmgrp--dev-vg01
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmgrp--dev-vg01 ']'
+++ return 0
+++ create_volume_group=1
+++ create_logical_volumes=1
+++ create_thin_volumes_only=0
+++ '[' 1 -eq 1 ']'
+++ LogPrint 'Creating LVM VG '\''vg01'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM VG '\''vg01'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.394164884 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.394164884 Creating LVM VG '\''vg01'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.394164884 Creating LVM VG 'vg01'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM VG '\''vg01'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM VG '\''vg01'\''; Warning: some properties may not be preserved...'
+++ '[' -e /dev/vg01 ']'
+++ lvm vgremove vg01 --force --yes
Volume group "vg01" not found
Cannot process volume group vg01
+++ true
+++ lvm vgcreate --physicalextentsize 4096k vg01 /dev/sdb
Volume group "vg01" successfully created
+++ lvm vgchange --available y vg01
0 logical volume(s) in volume group "vg01" now active
+++ component_created /dev/vg01 lvmgrp
+++ local device=/dev/vg01
+++ local type=lvmgrp
+++ local touchfile=lvmgrp--dev-vg01
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmgrp--dev-vg01
+++ create_component /dev/mapper/vg00-lv_audit lvmvol
+++ local device=/dev/mapper/vg00-lv_audit
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_audit
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_audit ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_audit'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_audit'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.462337972 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.462337972 Creating LVM volume '\''vg00/lv_audit'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.462337972 Creating LVM volume 'vg00/lv_audit'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_audit'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_audit'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 4294967296b -n lv_audit vg00
Logical volume "lv_audit" created.
+++ component_created /dev/mapper/vg00-lv_audit lvmvol
+++ local device=/dev/mapper/vg00-lv_audit
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_audit
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_audit
+++ create_component /dev/mapper/vg00-lv_home lvmvol
+++ local device=/dev/mapper/vg00-lv_home
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_home
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_home ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_home'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_home'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.501283685 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.501283685 Creating LVM volume '\''vg00/lv_home'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.501283685 Creating LVM volume 'vg00/lv_home'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_home'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_home'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 4294967296b -n lv_home vg00
WARNING: ext3 signature detected on /dev/vg00/lv_home at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg00/lv_home.
Logical volume "lv_home" created.
+++ component_created /dev/mapper/vg00-lv_home lvmvol
+++ local device=/dev/mapper/vg00-lv_home
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_home
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_home
+++ create_component /dev/mapper/vg00-lv_log lvmvol
+++ local device=/dev/mapper/vg00-lv_log
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_log
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_log ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_log'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_log'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.545455436 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.545455436 Creating LVM volume '\''vg00/lv_log'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.545455436 Creating LVM volume 'vg00/lv_log'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_log'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_log'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 4294967296b -n lv_log vg00
WARNING: ext3 signature detected on /dev/vg00/lv_log at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg00/lv_log.
Logical volume "lv_log" created.
+++ component_created /dev/mapper/vg00-lv_log lvmvol
+++ local device=/dev/mapper/vg00-lv_log
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_log
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_log
+++ create_component /dev/mapper/vg00-lv_openv lvmvol
+++ local device=/dev/mapper/vg00-lv_openv
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_openv
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_openv ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_openv'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_openv'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.587854073 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.587854073 Creating LVM volume '\''vg00/lv_openv'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.587854073 Creating LVM volume 'vg00/lv_openv'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_openv'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_openv'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 5586812928b -n lv_openv vg00
WARNING: ext3 signature detected on /dev/vg00/lv_openv at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg00/lv_openv.
Logical volume "lv_openv" created.
+++ component_created /dev/mapper/vg00-lv_openv lvmvol
+++ local device=/dev/mapper/vg00-lv_openv
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_openv
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_openv
+++ create_component /dev/mapper/vg00-lv_opt lvmvol
+++ local device=/dev/mapper/vg00-lv_opt
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_opt
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_opt ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_opt'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_opt'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.636711860 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.636711860 Creating LVM volume '\''vg00/lv_opt'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.636711860 Creating LVM volume 'vg00/lv_opt'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_opt'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_opt'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 5368709120b -n lv_opt vg00
WARNING: ext3 signature detected on /dev/vg00/lv_opt at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg00/lv_opt.
Logical volume "lv_opt" created.
+++ component_created /dev/mapper/vg00-lv_opt lvmvol
+++ local device=/dev/mapper/vg00-lv_opt
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_opt
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_opt
+++ create_component /dev/mapper/vg00-lv_root lvmvol
+++ local device=/dev/mapper/vg00-lv_root
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_root
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_root ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_root'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_root'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.682764087 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.682764087 Creating LVM volume '\''vg00/lv_root'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.682764087 Creating LVM volume 'vg00/lv_root'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_root'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_root'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 8589934592b -n lv_root vg00
WARNING: ext3 signature detected on /dev/vg00/lv_root at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg00/lv_root.
Logical volume "lv_root" created.
+++ component_created /dev/mapper/vg00-lv_root lvmvol
+++ local device=/dev/mapper/vg00-lv_root
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_root
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_root
+++ create_component /dev/mapper/vg00-lv_tanium lvmvol
+++ local device=/dev/mapper/vg00-lv_tanium
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_tanium
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_tanium ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_tanium'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_tanium'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.737851286 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.737851286 Creating LVM volume '\''vg00/lv_tanium'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.737851286 Creating LVM volume 'vg00/lv_tanium'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_tanium'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_tanium'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 3221225472b -n lv_tanium vg00
WARNING: ext3 signature detected on /dev/vg00/lv_tanium at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg00/lv_tanium.
Logical volume "lv_tanium" created.
+++ component_created /dev/mapper/vg00-lv_tanium lvmvol
+++ local device=/dev/mapper/vg00-lv_tanium
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_tanium
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_tanium
+++ create_component /dev/mapper/vg00-lv_tmp lvmvol
+++ local device=/dev/mapper/vg00-lv_tmp
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_tmp
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_tmp ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_tmp'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_tmp'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.787615007 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.787615007 Creating LVM volume '\''vg00/lv_tmp'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.787615007 Creating LVM volume 'vg00/lv_tmp'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_tmp'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_tmp'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 2147483648b -n lv_tmp vg00
WARNING: ext3 signature detected on /dev/vg00/lv_tmp at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg00/lv_tmp.
Logical volume "lv_tmp" created.
+++ component_created /dev/mapper/vg00-lv_tmp lvmvol
+++ local device=/dev/mapper/vg00-lv_tmp
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_tmp
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_tmp
+++ create_component /dev/mapper/vg00-lv_var lvmvol
+++ local device=/dev/mapper/vg00-lv_var
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_var
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_var ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/lv_var'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/lv_var'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.834067141 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.834067141 Creating LVM volume '\''vg00/lv_var'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.834067141 Creating LVM volume 'vg00/lv_var'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/lv_var'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/lv_var'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 8589934592b -n lv_var vg00
WARNING: ext3 signature detected on /dev/vg00/lv_var at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg00/lv_var.
Logical volume "lv_var" created.
+++ component_created /dev/mapper/vg00-lv_var lvmvol
+++ local device=/dev/mapper/vg00-lv_var
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-lv_var
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-lv_var
+++ create_component /dev/mapper/vg00-swap lvmvol
+++ local device=/dev/mapper/vg00-swap
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-swap
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-swap ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg00/swap'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg00/swap'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.880305329 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.880305329 Creating LVM volume '\''vg00/swap'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.880305329 Creating LVM volume 'vg00/swap'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg00/swap'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg00/swap'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 4294967296b -n swap vg00
WARNING: swap signature detected on /dev/vg00/swap at offset 4086. Wipe it? [y/n]: Wiping swap signature on /dev/vg00/swap.
Logical volume "swap" created.
+++ component_created /dev/mapper/vg00-swap lvmvol
+++ local device=/dev/mapper/vg00-swap
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg00-swap
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg00-swap
+++ create_component /dev/mapper/vg01-lv00 lvmvol
+++ local device=/dev/mapper/vg01-lv00
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg01-lv00
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg01-lv00 ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg01/lv00'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg01/lv00'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.920998062 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.920998062 Creating LVM volume '\''vg01/lv00'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.920998062 Creating LVM volume 'vg01/lv00'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg01/lv00'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg01/lv00'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 268431261696b -n lv00 vg01
WARNING: ext3 signature detected on /dev/vg01/lv00 at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg01/lv00.
Logical volume "lv00" created.
+++ component_created /dev/mapper/vg01-lv00 lvmvol
+++ local device=/dev/mapper/vg01-lv00
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg01-lv00
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg01-lv00
+++ create_component /dev/mapper/vg02-lv00 lvmvol
+++ local device=/dev/mapper/vg02-lv00
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg02-lv00
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg02-lv00 ']'
+++ return 0
+++ '[' 1 -eq 1 ']'
+++ '[' 0 -eq 0 ']'
+++ LogPrint 'Creating LVM volume '\''vg02/lv00'\''; Warning: some properties may not be preserved...'
+++ Log 'Creating LVM volume '\''vg02/lv00'\''; Warning: some properties may not be preserved...'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:47.965715134 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:47.965715134 Creating LVM volume '\''vg02/lv00'\''; Warning: some properties may not be preserved...'
2020-12-17 09:39:47.965715134 Creating LVM volume 'vg02/lv00'; Warning: some properties may not be preserved...
+++ Print 'Creating LVM volume '\''vg02/lv00'\''; Warning: some properties may not be preserved...'
+++ test 1
+++ echo -e 'Creating LVM volume '\''vg02/lv00'\''; Warning: some properties may not be preserved...'
+++ lvm lvcreate -L 107369988096b -n lv00 vg02
WARNING: ext3 signature detected on /dev/vg02/lv00 at offset 1080. Wipe it? [y/n]: Wiping ext3 signature on /dev/vg02/lv00.
Logical volume "lv00" created.
+++ component_created /dev/mapper/vg02-lv00 lvmvol
+++ local device=/dev/mapper/vg02-lv00
+++ local type=lvmvol
+++ local touchfile=lvmvol--dev-mapper-vg02-lv00
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/lvmvol--dev-mapper-vg02-lv00
+++ create_component fs:/ fs
+++ local device=fs:/
+++ local type=fs
+++ local touchfile=fs-fs:-
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:- ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point / on /dev/mapper/vg00-lv_root.'
+++ Log 'Creating filesystem of type ext3 with mount point / on /dev/mapper/vg00-lv_root.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:48.013128490 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:48.013128490 Creating filesystem of type ext3 with mount point / on /dev/mapper/vg00-lv_root.'
2020-12-17 09:39:48.013128490 Creating filesystem of type ext3 with mount point / on /dev/mapper/vg00-lv_root.
+++ Print 'Creating filesystem of type ext3 with mount point / on /dev/mapper/vg00-lv_root.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point / on /dev/mapper/vg00-lv_root.'
+++ wipefs --all --force /dev/mapper/vg00-lv_root
+++ mkfs -t ext3 -b 4096 -i 16384 -U 570493f8-d3b9-4110-9fda-f39c13e5d33d -F /dev/mapper/vg00-lv_root
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
524288 inodes, 2097152 blocks
104857 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2147483648
64 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632
Allocating group tables: 0/64 done
Writing inode tables: 0/64 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/64 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_root
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (83886 blocks)
+++ LogPrint 'Mounting filesystem /'
+++ Log 'Mounting filesystem /'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:48.542438377 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:48.542438377 Mounting filesystem /'
2020-12-17 09:39:48.542438377 Mounting filesystem /
+++ Print 'Mounting filesystem /'
+++ test 1
+++ echo -e 'Mounting filesystem /'
+++ mkdir -p /mnt/local/
+++ mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_root /mnt/local/
+++ component_created fs:/ fs
+++ local device=fs:/
+++ local type=fs
+++ local touchfile=fs-fs:-
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-
+++ create_component fs:/home fs
+++ local device=fs:/home
+++ local type=fs
+++ local touchfile=fs-fs:-home
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-home ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /home on /dev/mapper/vg00-lv_home.'
+++ Log 'Creating filesystem of type ext3 with mount point /home on /dev/mapper/vg00-lv_home.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:48.605264082 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:48.605264082 Creating filesystem of type ext3 with mount point /home on /dev/mapper/vg00-lv_home.'
2020-12-17 09:39:48.605264082 Creating filesystem of type ext3 with mount point /home on /dev/mapper/vg00-lv_home.
+++ Print 'Creating filesystem of type ext3 with mount point /home on /dev/mapper/vg00-lv_home.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /home on /dev/mapper/vg00-lv_home.'
+++ wipefs --all --force /dev/mapper/vg00-lv_home
+++ mkfs -t ext3 -b 4096 -i 16384 -U 05c6e67f-b1c6-43f5-95fb-07dd66ddbc79 -F /dev/mapper/vg00-lv_home
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
262144 inodes, 1048576 blocks
52428 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1073741824
32 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736
Allocating group tables: 0/32 done
Writing inode tables: 0/32 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/32 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_home
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (41943 blocks)
+++ LogPrint 'Mounting filesystem /home'
+++ Log 'Mounting filesystem /home'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:48.806356930 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:48.806356930 Mounting filesystem /home'
2020-12-17 09:39:48.806356930 Mounting filesystem /home
+++ Print 'Mounting filesystem /home'
+++ test 1
+++ echo -e 'Mounting filesystem /home'
+++ mkdir -p /mnt/local/home
+++ mount -o rw,dev,relatime,data=ordered /dev/mapper/vg00-lv_home /mnt/local/home
+++ component_created fs:/home fs
+++ local device=fs:/home
+++ local type=fs
+++ local touchfile=fs-fs:-home
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-home
+++ create_component fs:/usr/openv fs
+++ local device=fs:/usr/openv
+++ local type=fs
+++ local touchfile=fs-fs:-usr-openv
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-usr-openv ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /usr/openv on /dev/mapper/vg00-lv_openv.'
+++ Log 'Creating filesystem of type ext3 with mount point /usr/openv on /dev/mapper/vg00-lv_openv.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:48.881324336 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:48.881324336 Creating filesystem of type ext3 with mount point /usr/openv on /dev/mapper/vg00-lv_openv.'
2020-12-17 09:39:48.881324336 Creating filesystem of type ext3 with mount point /usr/openv on /dev/mapper/vg00-lv_openv.
+++ Print 'Creating filesystem of type ext3 with mount point /usr/openv on /dev/mapper/vg00-lv_openv.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /usr/openv on /dev/mapper/vg00-lv_openv.'
+++ wipefs --all --force /dev/mapper/vg00-lv_openv
+++ mkfs -t ext3 -b 4096 -i 16365 -U 7a7217a0-ee6d-4606-a594-33225cd18e20 -F /dev/mapper/vg00-lv_openv
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
342048 inodes, 1363968 blocks
68198 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1396703232
42 block groups
32768 blocks per group, 32768 fragments per group
8144 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736
Allocating group tables: 0/42 done
Writing inode tables: 0/42 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/42 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_openv
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (54558 blocks)
+++ LogPrint 'Mounting filesystem /usr/openv'
+++ Log 'Mounting filesystem /usr/openv'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:49.097738316 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:49.097738316 Mounting filesystem /usr/openv'
2020-12-17 09:39:49.097738316 Mounting filesystem /usr/openv
+++ Print 'Mounting filesystem /usr/openv'
+++ test 1
+++ echo -e 'Mounting filesystem /usr/openv'
+++ mkdir -p /mnt/local/usr/openv
+++ mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_openv /mnt/local/usr/openv
+++ component_created fs:/usr/openv fs
+++ local device=fs:/usr/openv
+++ local type=fs
+++ local touchfile=fs-fs:-usr-openv
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-usr-openv
+++ create_component fs:/opt fs
+++ local device=fs:/opt
+++ local type=fs
+++ local touchfile=fs-fs:-opt
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-opt ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /opt on /dev/mapper/vg00-lv_opt.'
+++ Log 'Creating filesystem of type ext3 with mount point /opt on /dev/mapper/vg00-lv_opt.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:49.117114802 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:49.117114802 Creating filesystem of type ext3 with mount point /opt on /dev/mapper/vg00-lv_opt.'
2020-12-17 09:39:49.117114802 Creating filesystem of type ext3 with mount point /opt on /dev/mapper/vg00-lv_opt.
+++ Print 'Creating filesystem of type ext3 with mount point /opt on /dev/mapper/vg00-lv_opt.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /opt on /dev/mapper/vg00-lv_opt.'
+++ wipefs --all --force /dev/mapper/vg00-lv_opt
+++ mkfs -t ext3 -b 4096 -i 16384 -U eca735a8-927d-4c24-ac7b-72ae0846aa81 -F /dev/mapper/vg00-lv_opt
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
327680 inodes, 1310720 blocks
65536 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1342177280
40 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736
Allocating group tables: 0/40 done
Writing inode tables: 0/40 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/40 done
+++ tune2fs -m 5 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_opt
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 5% (65536 blocks)
+++ LogPrint 'Mounting filesystem /opt'
+++ Log 'Mounting filesystem /opt'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:49.414033076 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:49.414033076 Mounting filesystem /opt'
2020-12-17 09:39:49.414033076 Mounting filesystem /opt
+++ Print 'Mounting filesystem /opt'
+++ test 1
+++ echo -e 'Mounting filesystem /opt'
+++ mkdir -p /mnt/local/opt
+++ mount -o rw,nosuid,dev,relatime,data=ordered /dev/mapper/vg00-lv_opt /mnt/local/opt
+++ component_created fs:/opt fs
+++ local device=fs:/opt
+++ local type=fs
+++ local touchfile=fs-fs:-opt
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-opt
+++ create_component fs:/opt/Tanium fs
+++ local device=fs:/opt/Tanium
+++ local type=fs
+++ local touchfile=fs-fs:-opt-Tanium
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-opt-Tanium ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /opt/Tanium on /dev/mapper/vg00-lv_tanium.'
+++ Log 'Creating filesystem of type ext3 with mount point /opt/Tanium on /dev/mapper/vg00-lv_tanium.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:49.435176142 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:49.435176142 Creating filesystem of type ext3 with mount point /opt/Tanium on /dev/mapper/vg00-lv_tanium.'
2020-12-17 09:39:49.435176142 Creating filesystem of type ext3 with mount point /opt/Tanium on /dev/mapper/vg00-lv_tanium.
+++ Print 'Creating filesystem of type ext3 with mount point /opt/Tanium on /dev/mapper/vg00-lv_tanium.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /opt/Tanium on /dev/mapper/vg00-lv_tanium.'
+++ wipefs --all --force /dev/mapper/vg00-lv_tanium
+++ mkfs -t ext3 -b 4096 -i 16384 -U dc1ed788-208b-4007-be9c-d97b8f30812c -F /dev/mapper/vg00-lv_tanium
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
196608 inodes, 786432 blocks
39321 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=805306368
24 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912
Allocating group tables: 0/24 done
Writing inode tables: 0/24 done
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: 0/24 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_tanium
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (31457 blocks)
+++ LogPrint 'Mounting filesystem /opt/Tanium'
+++ Log 'Mounting filesystem /opt/Tanium'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:49.601089585 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:49.601089585 Mounting filesystem /opt/Tanium'
2020-12-17 09:39:49.601089585 Mounting filesystem /opt/Tanium
+++ Print 'Mounting filesystem /opt/Tanium'
+++ test 1
+++ echo -e 'Mounting filesystem /opt/Tanium'
+++ mkdir -p /mnt/local/opt/Tanium
+++ mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_tanium /mnt/local/opt/Tanium
+++ component_created fs:/opt/Tanium fs
+++ local device=fs:/opt/Tanium
+++ local type=fs
+++ local touchfile=fs-fs:-opt-Tanium
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-opt-Tanium
+++ create_component fs:/tmp fs
+++ local device=fs:/tmp
+++ local type=fs
+++ local touchfile=fs-fs:-tmp
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-tmp ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /tmp on /dev/mapper/vg00-lv_tmp.'
+++ Log 'Creating filesystem of type ext3 with mount point /tmp on /dev/mapper/vg00-lv_tmp.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:49.619219624 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:49.619219624 Creating filesystem of type ext3 with mount point /tmp on /dev/mapper/vg00-lv_tmp.'
2020-12-17 09:39:49.619219624 Creating filesystem of type ext3 with mount point /tmp on /dev/mapper/vg00-lv_tmp.
+++ Print 'Creating filesystem of type ext3 with mount point /tmp on /dev/mapper/vg00-lv_tmp.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /tmp on /dev/mapper/vg00-lv_tmp.'
+++ wipefs --all --force /dev/mapper/vg00-lv_tmp
+++ mkfs -t ext3 -b 4096 -i 16384 -U d74c63ed-f72e-400a-954f-164acd8b5f25 -F /dev/mapper/vg00-lv_tmp
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
131072 inodes, 524288 blocks
26214 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=536870912
16 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912
Allocating group tables: 0/16 done
Writing inode tables: 0/16 done
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: 0/16 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_tmp
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (20971 blocks)
+++ LogPrint 'Mounting filesystem /tmp'
+++ Log 'Mounting filesystem /tmp'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:49.727443018 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:49.727443018 Mounting filesystem /tmp'
2020-12-17 09:39:49.727443018 Mounting filesystem /tmp
+++ Print 'Mounting filesystem /tmp'
+++ test 1
+++ echo -e 'Mounting filesystem /tmp'
+++ mkdir -p /mnt/local/tmp
+++ mount -o rw,nosuid,dev,relatime,data=ordered /dev/mapper/vg00-lv_tmp /mnt/local/tmp
+++ component_created fs:/tmp fs
+++ local device=fs:/tmp
+++ local type=fs
+++ local touchfile=fs-fs:-tmp
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-tmp
+++ create_component fs:/var fs
+++ local device=fs:/var
+++ local type=fs
+++ local touchfile=fs-fs:-var
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-var ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /var on /dev/mapper/vg00-lv_var.'
+++ Log 'Creating filesystem of type ext3 with mount point /var on /dev/mapper/vg00-lv_var.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:49.760206912 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:49.760206912 Creating filesystem of type ext3 with mount point /var on /dev/mapper/vg00-lv_var.'
2020-12-17 09:39:49.760206912 Creating filesystem of type ext3 with mount point /var on /dev/mapper/vg00-lv_var.
+++ Print 'Creating filesystem of type ext3 with mount point /var on /dev/mapper/vg00-lv_var.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /var on /dev/mapper/vg00-lv_var.'
+++ wipefs --all --force /dev/mapper/vg00-lv_var
+++ mkfs -t ext3 -b 4096 -i 16384 -U a166eb11-535c-409f-9bfe-d7d2ba025d1c -F /dev/mapper/vg00-lv_var
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
524288 inodes, 2097152 blocks
104857 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2147483648
64 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632
Allocating group tables: 0/64 done
Writing inode tables: 0/64 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/64 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_var
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (83886 blocks)
+++ LogPrint 'Mounting filesystem /var'
+++ Log 'Mounting filesystem /var'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:50.152791136 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:50.152791136 Mounting filesystem /var'
2020-12-17 09:39:50.152791136 Mounting filesystem /var
+++ Print 'Mounting filesystem /var'
+++ test 1
+++ echo -e 'Mounting filesystem /var'
+++ mkdir -p /mnt/local/var
+++ mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_var /mnt/local/var
+++ component_created fs:/var fs
+++ local device=fs:/var
+++ local type=fs
+++ local touchfile=fs-fs:-var
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-var
+++ create_component fs:/var/log fs
+++ local device=fs:/var/log
+++ local type=fs
+++ local touchfile=fs-fs:-var-log
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-var-log ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /var/log on /dev/mapper/vg00-lv_log.'
+++ Log 'Creating filesystem of type ext3 with mount point /var/log on /dev/mapper/vg00-lv_log.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:50.184145073 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:50.184145073 Creating filesystem of type ext3 with mount point /var/log on /dev/mapper/vg00-lv_log.'
2020-12-17 09:39:50.184145073 Creating filesystem of type ext3 with mount point /var/log on /dev/mapper/vg00-lv_log.
+++ Print 'Creating filesystem of type ext3 with mount point /var/log on /dev/mapper/vg00-lv_log.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /var/log on /dev/mapper/vg00-lv_log.'
+++ wipefs --all --force /dev/mapper/vg00-lv_log
+++ mkfs -t ext3 -b 4096 -i 16384 -U 27c80cff-f6b3-4079-8d5f-b29b315be900 -F /dev/mapper/vg00-lv_log
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
262144 inodes, 1048576 blocks
52428 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1073741824
32 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736
Allocating group tables: 0/32 done
Writing inode tables: 0/32 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/32 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_log
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (41943 blocks)
+++ LogPrint 'Mounting filesystem /var/log'
+++ Log 'Mounting filesystem /var/log'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:50.412724931 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:50.412724931 Mounting filesystem /var/log'
2020-12-17 09:39:50.412724931 Mounting filesystem /var/log
+++ Print 'Mounting filesystem /var/log'
+++ test 1
+++ echo -e 'Mounting filesystem /var/log'
+++ mkdir -p /mnt/local/var/log
+++ mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_log /mnt/local/var/log
+++ component_created fs:/var/log fs
+++ local device=fs:/var/log
+++ local type=fs
+++ local touchfile=fs-fs:-var-log
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-var-log
+++ create_component fs:/var/log/audit fs
+++ local device=fs:/var/log/audit
+++ local type=fs
+++ local touchfile=fs-fs:-var-log-audit
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-var-log-audit ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /var/log/audit on /dev/mapper/vg00-lv_audit.'
+++ Log 'Creating filesystem of type ext3 with mount point /var/log/audit on /dev/mapper/vg00-lv_audit.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:50.434113692 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:50.434113692 Creating filesystem of type ext3 with mount point /var/log/audit on /dev/mapper/vg00-lv_audit.'
2020-12-17 09:39:50.434113692 Creating filesystem of type ext3 with mount point /var/log/audit on /dev/mapper/vg00-lv_audit.
+++ Print 'Creating filesystem of type ext3 with mount point /var/log/audit on /dev/mapper/vg00-lv_audit.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /var/log/audit on /dev/mapper/vg00-lv_audit.'
+++ wipefs --all --force /dev/mapper/vg00-lv_audit
+++ mkfs -t ext3 -b 4096 -i 16384 -U 8e92b10f-1065-46ff-ae41-eb9dcf594a25 -F /dev/mapper/vg00-lv_audit
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
262144 inodes, 1048576 blocks
52428 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1073741824
32 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736
Allocating group tables: 0/32 done
Writing inode tables: 0/32 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/32 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg00-lv_audit
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (41943 blocks)
+++ LogPrint 'Mounting filesystem /var/log/audit'
+++ Log 'Mounting filesystem /var/log/audit'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:50.645947487 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:50.645947487 Mounting filesystem /var/log/audit'
2020-12-17 09:39:50.645947487 Mounting filesystem /var/log/audit
+++ Print 'Mounting filesystem /var/log/audit'
+++ test 1
+++ echo -e 'Mounting filesystem /var/log/audit'
+++ mkdir -p /mnt/local/var/log/audit
+++ mount -o rw,relatime,data=ordered /dev/mapper/vg00-lv_audit /mnt/local/var/log/audit
+++ component_created fs:/var/log/audit fs
+++ local device=fs:/var/log/audit
+++ local type=fs
+++ local touchfile=fs-fs:-var-log-audit
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-var-log-audit
+++ create_component fs:/app/util fs
+++ local device=fs:/app/util
+++ local type=fs
+++ local touchfile=fs-fs:-app-util
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-app-util ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /app/util on /dev/mapper/vg01-lv00.'
+++ Log 'Creating filesystem of type ext3 with mount point /app/util on /dev/mapper/vg01-lv00.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:50.695225805 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:50.695225805 Creating filesystem of type ext3 with mount point /app/util on /dev/mapper/vg01-lv00.'
2020-12-17 09:39:50.695225805 Creating filesystem of type ext3 with mount point /app/util on /dev/mapper/vg01-lv00.
+++ Print 'Creating filesystem of type ext3 with mount point /app/util on /dev/mapper/vg01-lv00.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /app/util on /dev/mapper/vg01-lv00.'
+++ wipefs --all --force /dev/mapper/vg01-lv00
+++ mkfs -t ext3 -b 4096 -i 16383 -U fa4b1411-af38-4fe6-866e-9a9e746ff4fa -F /dev/mapper/vg01-lv00
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
16416000 inodes, 65534976 blocks
3276748 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4294967296
2000 block groups
32768 blocks per group, 32768 fragments per group
8208 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872
Allocating group tables: 0/2000 done
Writing inode tables: 0/2000 250/20001022/20001738/2000 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/2000 82/2000 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg01-lv00
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (2621399 blocks)
+++ LogPrint 'Mounting filesystem /app/util'
+++ Log 'Mounting filesystem /app/util'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:58.948240509 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:58.948240509 Mounting filesystem /app/util'
2020-12-17 09:39:58.948240509 Mounting filesystem /app/util
+++ Print 'Mounting filesystem /app/util'
+++ test 1
+++ echo -e 'Mounting filesystem /app/util'
+++ mkdir -p /mnt/local/app/util
+++ mount -o rw,relatime,data=ordered /dev/mapper/vg01-lv00 /mnt/local/app/util
+++ component_created fs:/app/util fs
+++ local device=fs:/app/util
+++ local type=fs
+++ local touchfile=fs-fs:-app-util
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-app-util
+++ create_component fs:/app/gtsc fs
+++ local device=fs:/app/gtsc
+++ local type=fs
+++ local touchfile=fs-fs:-app-gtsc
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-app-gtsc ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /app/gtsc on /dev/mapper/vg02-lv00.'
+++ Log 'Creating filesystem of type ext3 with mount point /app/gtsc on /dev/mapper/vg02-lv00.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:39:58.969158454 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:39:58.969158454 Creating filesystem of type ext3 with mount point /app/gtsc on /dev/mapper/vg02-lv00.'
2020-12-17 09:39:58.969158454 Creating filesystem of type ext3 with mount point /app/gtsc on /dev/mapper/vg02-lv00.
+++ Print 'Creating filesystem of type ext3 with mount point /app/gtsc on /dev/mapper/vg02-lv00.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /app/gtsc on /dev/mapper/vg02-lv00.'
+++ wipefs --all --force /dev/mapper/vg02-lv00
+++ mkfs -t ext3 -b 4096 -i 16383 -U a344c150-c2d8-485e-97d7-8243a609d89e -F /dev/mapper/vg02-lv00
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
6566400 inodes, 26213376 blocks
1310668 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4294967296
800 block groups
32768 blocks per group, 32768 fragments per group
8208 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424, 20480000, 23887872
Allocating group tables: 0/800 done
Writing inode tables: 0/800 15/800 done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: 0/800 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/mapper/vg02-lv00
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (1048535 blocks)
+++ LogPrint 'Mounting filesystem /app/gtsc'
+++ Log 'Mounting filesystem /app/gtsc'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:40:02.157946385 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:40:02.157946385 Mounting filesystem /app/gtsc'
2020-12-17 09:40:02.157946385 Mounting filesystem /app/gtsc
+++ Print 'Mounting filesystem /app/gtsc'
+++ test 1
+++ echo -e 'Mounting filesystem /app/gtsc'
+++ mkdir -p /mnt/local/app/gtsc
+++ mount -o rw,relatime,data=ordered /dev/mapper/vg02-lv00 /mnt/local/app/gtsc
+++ component_created fs:/app/gtsc fs
+++ local device=fs:/app/gtsc
+++ local type=fs
+++ local touchfile=fs-fs:-app-gtsc
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-app-gtsc
+++ create_component fs:/boot fs
+++ local device=fs:/boot
+++ local type=fs
+++ local touchfile=fs-fs:-boot
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-boot ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type ext3 with mount point /boot on /dev/sda1.'
+++ Log 'Creating filesystem of type ext3 with mount point /boot on /dev/sda1.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:40:02.178133174 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:40:02.178133174 Creating filesystem of type ext3 with mount point /boot on /dev/sda1.'
2020-12-17 09:40:02.178133174 Creating filesystem of type ext3 with mount point /boot on /dev/sda1.
+++ Print 'Creating filesystem of type ext3 with mount point /boot on /dev/sda1.'
+++ test 1
+++ echo -e 'Creating filesystem of type ext3 with mount point /boot on /dev/sda1.'
+++ wipefs --all --force /dev/sda1
+++ mkfs -t ext3 -b 4096 -i 16384 -U 3b9c84f9-1cf9-480c-8d46-26f8dd7b7e70 -F /dev/sda1
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
32768 inodes, 131072 blocks
6553 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=134217728
4 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304
Allocating group tables: 0/4 done
Writing inode tables: 0/4 done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: 0/4 done
+++ tune2fs -m 4 -c -1 -i 0d -o user_xattr,acl /dev/sda1
tune2fs 1.42.9 (28-Dec-2013)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Setting reserved blocks percentage to 4% (5242 blocks)
+++ LogPrint 'Mounting filesystem /boot'
+++ Log 'Mounting filesystem /boot'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:40:02.217261433 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:40:02.217261433 Mounting filesystem /boot'
2020-12-17 09:40:02.217261433 Mounting filesystem /boot
+++ Print 'Mounting filesystem /boot'
+++ test 1
+++ echo -e 'Mounting filesystem /boot'
+++ mkdir -p /mnt/local/boot
+++ mount -o rw,relatime,data=ordered /dev/sda1 /mnt/local/boot
+++ component_created fs:/boot fs
+++ local device=fs:/boot
+++ local type=fs
+++ local touchfile=fs-fs:-boot
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-boot
+++ create_component fs:/app/gtsc/docker fs
+++ local device=fs:/app/gtsc/docker
+++ local type=fs
+++ local touchfile=fs-fs:-app-gtsc-docker
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-app-gtsc-docker ']'
+++ return 0
+++ my_udevsettle
+++ has_binary udevadm
+++ for bin in '$@'
+++ type udevadm
+++ return 0
+++ udevadm settle
+++ return 0
+++ LogPrint 'Creating filesystem of type xfs with mount point /app/gtsc/docker on /dev/sdd.'
+++ Log 'Creating filesystem of type xfs with mount point /app/gtsc/docker on /dev/sdd.'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:40:02.377302382 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:40:02.377302382 Creating filesystem of type xfs with mount point /app/gtsc/docker on /dev/sdd.'
2020-12-17 09:40:02.377302382 Creating filesystem of type xfs with mount point /app/gtsc/docker on /dev/sdd.
+++ Print 'Creating filesystem of type xfs with mount point /app/gtsc/docker on /dev/sdd.'
+++ test 1
+++ echo -e 'Creating filesystem of type xfs with mount point /app/gtsc/docker on /dev/sdd.'
+++ wipefs --all --force /dev/sdd
+++ mkfs.xfs -f -m uuid=e3fbb87a-2b3d-4f5f-8245-af9320935d7f -i size=512 -d agcount=4 -s size=512 -i attr=2 -i projid32bit=1 -m crc=1 -m finobt=0 -b size=4096 -i maxpct=25 -d sunit=0 -d swidth=0 -l version=2 -l lazy-count=1 -n size=4096 -n version=2 -r extsize=4096 /dev/sdd
meta-data=/dev/sdd isize=512 agcount=4, agsize=26214400 blks
= sectsz=512 attr=2, projid32bit=1
= crc=1 finobt=0, sparse=0
data = bsize=4096 blocks=104857600, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=1
log =internal log bsize=4096 blocks=51200, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
+++ LogPrint 'Mounting filesystem /app/gtsc/docker'
+++ Log 'Mounting filesystem /app/gtsc/docker'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:40:03.135218229 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:40:03.135218229 Mounting filesystem /app/gtsc/docker'
2020-12-17 09:40:03.135218229 Mounting filesystem /app/gtsc/docker
+++ Print 'Mounting filesystem /app/gtsc/docker'
+++ test 1
+++ echo -e 'Mounting filesystem /app/gtsc/docker'
+++ mkdir -p /mnt/local/app/gtsc/docker
+++ mount -o rw,relatime,attr2,inode64,noquota /dev/sdd /mnt/local/app/gtsc/docker
+++ component_created fs:/app/gtsc/docker fs
+++ local device=fs:/app/gtsc/docker
+++ local type=fs
+++ local touchfile=fs-fs:-app-gtsc-docker
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/fs-fs:-app-gtsc-docker
+++ create_component swap:/dev/mapper/vg00-swap swap
+++ local device=swap:/dev/mapper/vg00-swap
+++ local type=swap
+++ local touchfile=swap-swap:-dev-mapper-vg00-swap
+++ '[' -e /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/swap-swap:-dev-mapper-vg00-swap ']'
+++ return 0
+++ LogPrint 'Creating swap on /dev/mapper/vg00-swap'
+++ Log 'Creating swap on /dev/mapper/vg00-swap'
++++ date '+%Y-%m-%d %H:%M:%S.%N '
+++ local 'timestamp=2020-12-17 09:40:03.209127220 '
+++ test 1 -gt 0
+++ echo '2020-12-17 09:40:03.209127220 Creating swap on /dev/mapper/vg00-swap'
2020-12-17 09:40:03.209127220 Creating swap on /dev/mapper/vg00-swap
+++ Print 'Creating swap on /dev/mapper/vg00-swap'
+++ test 1
+++ echo -e 'Creating swap on /dev/mapper/vg00-swap'
+++ mkswap -U 109e1047-d5bb-4bd1-ad17-f013910321a7 /dev/mapper/vg00-swap
Setting up swapspace version 1, size = 4194300 KiB
no label, UUID=109e1047-d5bb-4bd1-ad17-f013910321a7
+++ component_created swap:/dev/mapper/vg00-swap swap
+++ local device=swap:/dev/mapper/vg00-swap
+++ local type=swap
+++ local touchfile=swap-swap:-dev-mapper-vg00-swap
+++ touch /tmp/rear.sdeAhmyZOA3CnWU/tmp/touch/swap-swap:-dev-mapper-vg00-swap
+++ set +x
2020-12-17 09:40:03.218518878 Disk layout created.
2020-12-17 09:40:03.222627695 UserInput: called in /usr/share/rear/layout/recreate/default/200_run_layout_code.sh line 98
2020-12-17 09:40:03.226795378 UserInput: Default input in choices - using choice number 1 as default input
2020-12-17 09:40:03.228495474 Confirm the recreated disk layout or go back one step
2020-12-17 09:40:03.230147344 1) Confirm recreated disk layout and continue 'rear recover'
2020-12-17 09:40:03.231781606 2) Go back one step to redo disk layout recreation
2020-12-17 09:40:03.233403362 3) Use Relax-and-Recover shell and return back to here
2020-12-17 09:40:03.235029348 4) Abort 'rear recover'
2020-12-17 09:40:03.236622750 (default '1' timeout 300 seconds)
2020-12-17 09:40:14.100838668 UserInput: 'read' got as user input '1'
2020-12-17 09:40:14.105276586 User confirmed recreated disk layout
2020-12-17 09:40:14.110371291 Including layout/recreate/default/250_verify_mount.sh
2020-12-17 09:40:14.114936175 Finished running 'layout/recreate' stage in 77 seconds
2020-12-17 09:40:14.116462421 ======================
2020-12-17 09:40:14.117902989 Running 'restore' stage
2020-12-17 09:40:14.119291487 ======================
2020-12-17 09:40:14.128086789 Including restore/Fedora/050_copy_dev_files.sh
2020-12-17 09:40:14.141678452 Including restore/default/050_remount_async.sh
2020-12-17 09:40:14.146353069 Including restore/NETFS/default/100_mount_NETFS_path.sh
mkdir: created directory '/tmp/rear.sdeAhmyZOA3CnWU/outputfs'
2020-12-17 09:40:14.155479053 Mounting with 'mount -v -t nfs -o ro,nfsvers=3,nolock itsbebevnobkup2.jnj.com:/vol/itsbebevnobkup2_linux/linux_images_1/itsgbhhlsp01629.jnj.com /tmp/rear.sdeAhmyZOA3CnWU/outputfs'
mount.nfs: trying 10.166.30.34 prog 100003 vers 3 prot TCP port 2049
mount.nfs: trying 10.166.30.34 prog 100005 vers 3 prot UDP port 4046
mount.nfs: timeout set for Thu Dec 17 09:42:14 2020
mount.nfs: trying text-based options 'nfsvers=3,nolock,addr=10.166.30.34'
mount.nfs: prog 100003, trying vers=3, prot=6
mount.nfs: prog 100005, trying vers=3, prot=17
2020-12-17 09:40:14.310009911 Including restore/NETFS/default/200_remove_relative_rsync_option.sh
Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.
2020-12-17 09:40:14.319839030 Including restore/NETFS/default/380_prepare_multiple_isos.sh
2020-12-17 09:40:14.362732122 Including restore/NETFS/default/400_restore_backup.sh
2020-12-17 09:40:14.380203756 Decrypting backup archive is disabled
2020-12-17 09:40:14.385279225 Restoring from '/tmp/rear.sdeAhmyZOA3CnWU/outputfs/image/backup.tar.gz' (restore log in /var/lib/rear/restore/recover.backup.tar.gz.771.restore.log) ...
2020-12-17 09:40:14.387410157 Launched backup restore subshell (PID=4216)
2020-12-17 09:42:00.019820298 Restored 13662 MiB in 106 seconds [avg. 131983 KiB/sec]
2020-12-17 09:42:00.021813217 Restoring finished (verify backup restore log messages in /var/lib/rear/restore/recover.backup.tar.gz.771.restore.log)
2020-12-17 09:42:00.026884326 Including restore/NETFS/default/500_selinux_autorelabel.sh
2020-12-17 09:42:00.061588071 Including restore/default/500_selinux_autorelabel.sh
2020-12-17 09:42:00.065114512 Created /.autorelabel file : after reboot SELinux will relabel all files
2020-12-17 09:42:00.071404069 Including restore/NETFS/Linux-i386/510_selinux_fixfiles_exclude_dirs.sh
2020-12-17 09:42:00.076511457 Including restore/NETFS/default/510_set_capabilities.sh
2020-12-17 09:42:00.081826883 Including restore/default/900_create_missing_directories.sh
/mnt/local /usr/share/rear/layout/prepare/GNU/Linux
2020-12-17 09:42:00.083817196 Recreating directories (with permissions) from /var/lib/rear/recovery/directories_permissions_owner_group
mkdir: created directory 'app/lz'
mode of 'app/lz' changed from 0755 (rwxr-xr-x) to 0700 (rwx------)
/root/.bashrc: line 21: /proc/4896/loginuid: No such file or directory
changed ownership of 'app/lz' from root:root to root:nobody
mkdir: created directory 'app/tdrive'
mode of 'app/tdrive' changed from 0755 (rwxr-xr-x) to 0700 (rwx------)
/root/.bashrc: line 21: /proc/4921/loginuid: No such file or directory
ownership of 'app/tdrive' retained as root:root
/usr/share/rear/layout/prepare/GNU/Linux
2020-12-17 09:42:00.153627317 Including restore/NETFS/default/980_umount_NETFS_dir.sh
2020-12-17 09:42:00.157866653 Unmounting '/tmp/rear.sdeAhmyZOA3CnWU/outputfs'
/tmp/rear.sdeAhmyZOA3CnWU/outputfs: nfs mount point detected
/tmp/rear.sdeAhmyZOA3CnWU/outputfs: umounted
rmdir: removing directory, '/tmp/rear.sdeAhmyZOA3CnWU/outputfs'
2020-12-17 09:42:00.580959412 Including restore/default/990_move_away_restored_files.sh
2020-12-17 09:42:00.585866495 Including restore/default/995_remount_sync.sh
2020-12-17 09:42:00.587367555 Finished running 'restore' stage in 106 seconds
2020-12-17 09:42:00.588804459 ======================
2020-12-17 09:42:00.590112769 Running 'finalize' stage
2020-12-17 09:42:00.591407739 ======================
2020-12-17 09:42:00.599637607 Including finalize/default/020_confirm_finalize.sh
2020-12-17 09:42:00.604289751 UserInput: called in /usr/share/rear/finalize/default/020_confirm_finalize.sh line 35
2020-12-17 09:42:00.608209611 UserInput: Default input in choices - using choice number 1 as default input
2020-12-17 09:42:00.609954284 Confirm restored config files or edit them
2020-12-17 09:42:00.611713935 1) Confirm it is OK to recreate initrd and reinstall bootloader and continue 'rear recover'
2020-12-17 09:42:00.613424023 2) Edit restored etc/fstab (/mnt/local/etc/fstab)
2020-12-17 09:42:00.615100383 3) View restored etc/fstab (/mnt/local/etc/fstab)
2020-12-17 09:42:00.616811950 4) Use Relax-and-Recover shell and return back to here
2020-12-17 09:42:00.618474757 5) Abort 'rear recover'
2020-12-17 09:42:00.620178370 (default '1' timeout 300 seconds)
2020-12-17 09:42:13.129252246 UserInput: 'read' got as user input '1'
2020-12-17 09:42:13.133630492 User confirmed restored files
2020-12-17 09:42:13.138608287 Including finalize/default/050_prepare_checks.sh
2020-12-17 09:42:13.145148047 Including finalize/default/100_populate_dev.sh
2020-12-17 09:42:13.162413773 Including finalize/GNU/Linux/240_reassign_luks_keyfiles.sh
2020-12-17 09:42:13.168993923 Including finalize/GNU/Linux/250_migrate_disk_devices_layout.sh
2020-12-17 09:42:13.173032067 Completely identical layout mapping in /var/lib/rear/layout/disk_mappings
2020-12-17 09:42:13.176407569 Completely identical layout mapping in /var/lib/rear/layout/disk_mappings
2020-12-17 09:42:13.180799220 Not patching dead link 'etc/sysconfig/grub' -> '/mnt/local/mnt/local/etc/default/grub'
2020-12-17 09:42:13.185033974 Not patching dead link 'etc/mtab' -> '/mnt/local/proc/5037/mounts'
2020-12-17 09:42:13.188467483 Completely identical layout mapping in /var/lib/rear/layout/disk_mappings
2020-12-17 09:42:13.191933055 Completely identical layout mapping in /var/lib/rear/layout/disk_mappings
2020-12-17 09:42:13.195354170 Completely identical layout mapping in /var/lib/rear/layout/disk_mappings
2020-12-17 09:42:13.200144447 Including finalize/GNU/Linux/250_migrate_lun_wwid.sh
2020-12-17 09:42:13.204809865 Including finalize/GNU/Linux/260_rename_diskbyid.sh
2020-12-17 09:42:13.208215118 Completely identical layout mapping in /var/lib/rear/layout/disk_mappings
2020-12-17 09:42:13.618757708 Including finalize/GNU/Linux/280_migrate_uuid_tags.sh
2020-12-17 09:42:13.623726252 Including finalize/GNU/Linux/300_create_mac_mapping.sh
2020-12-17 09:42:13.628916617 Including finalize/GNU/Linux/310_migrate_udev_rules.sh
2020-12-17 09:42:13.634760074 Updating udev configuration (90-eno-fix.rules)
'/mnt/local//etc/udev/rules.d/90-eno-fix.rules' -> '/mnt/local/root/rear-90-eno-fix.rules.old'
'/etc/udev/rules.d/90-eno-fix.rules' -> '/mnt/local//etc/udev/rules.d/90-eno-fix.rules'
2020-12-17 09:42:13.642719647 Including finalize/GNU/Linux/320_migrate_network_configuration_files.sh
2020-12-17 09:42:13.662472523 SED_SCRIPT: ';s/00:50:56:9d:24:47/00:50:56:9d:16:da/g;s/eno16780032/eno16780032/g;s/00:50:56:9D:24:47/00:50:56:9D:16:DA/g;s/Eno16780032/eno16780032/g;s/00:50:56:9d:96:af/00:50:56:9d:73:a2/g;s/eno33559296/eno33559296/g;s/00:50:56:9D:96:AF/00:50:56:9D:73:A2/g;s/Eno33559296/eno33559296/g'
2020-12-17 09:42:13.677014262 Including finalize/GNU/Linux/430_create_multipath_config.sh
/usr/share/rear/finalize/GNU/Linux/430_create_multipath_config.sh: line 7: multipath: command not found
2020-12-17 09:42:13.682386938 Including finalize/Fedora/i386/550_rebuild_initramfs.sh
2020-12-17 09:42:13.685875743 Original OLD_INITRD_MODULES=''
2020-12-17 09:42:13.691593799 New INITRD_MODULES=' ahci ata_generic ata_piix libahci libata pata_acpi sd_mod sg sr_mod vmw_pvscsi'
2020-12-17 09:42:13.710115000 Running mkinitrd...
Executing: /sbin/dracut -v -f --add-drivers " ahci ata_generic ata_piix libahci libata pata_acpi sd_mod sg sr_mod vmw_pvscsi" /boot/initramfs-3.10.0-1062.12.1.el7.x86_64.img 3.10.0-1062.12.1.el7.x86_64
dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
dracut module 'multipath' will not be installed, because command 'multipath' could not be found!
dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsistart' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
dracut module 'multipath' will not be installed, because command 'multipath' could not be found!
dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsistart' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
*** Including module: bash ***
*** Including module: nss-softokn ***
*** Including module: i18n ***
*** Including module: network ***
*** Including module: ifcfg ***
*** Including module: drm ***
*** Including module: plymouth ***
*** Including module: dm ***
Skipping udev rule: 64-device-mapper.rules
Skipping udev rule: 60-persistent-storage-dm.rules
Skipping udev rule: 55-dm.rules
*** Including module: kernel-modules ***
*** Including module: lvm ***
Skipping udev rule: 64-device-mapper.rules
Skipping udev rule: 56-lvm.rules
Skipping udev rule: 60-persistent-storage-lvm.rules
*** Including module: rootfs-block ***
*** Including module: terminfo ***
*** Including module: udev-rules ***
Skipping udev rule: 40-redhat-cpu-hotplug.rules
Skipping udev rule: 91-permissions.rules
*** Including module: biosdevname ***
*** Including module: systemd ***
*** Including module: usrmount ***
*** Including module: base ***
*** Including module: fs-lib ***
*** Including module: microcode_ctl-fw_dir_override ***
microcode_ctl module: mangling fw_dir
microcode_ctl: reset fw_dir to "/lib/firmware/updates /lib/firmware"
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
intel: model '', path ' intel-ucode/*', kvers ''
intel: blacklist ''
No matching microcode files in ' intel-ucode/*' for CPU model 'GenuineIntel 06-3a-00', skipping
microcode_ctl: configuration "intel" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
intel-06-2d-07: model 'GenuineIntel 06-2d-07', path ' intel-ucode/06-2d-07', kvers ''
intel-06-2d-07: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-2d-07', skipping
microcode_ctl: configuration "intel-06-2d-07" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
intel-06-4f-01: model 'GenuineIntel 06-4f-01', path ' intel-ucode/06-4f-01', kvers ' 4.17.0 3.10.0-894 3.10.0-862.6.1 3.10.0-693.35.1 3.10.0-514.52.1 3.10.0-327.70.1 2.6.32-754.1.1 2.6.32-573.58.1 2.6.32-504.71.1 2.6.32-431.90.1 2.6.32-358.90.1'
intel-06-4f-01: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-4f-01', skipping
microcode_ctl: configuration "intel-06-4f-01" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
intel-06-55-04: model 'GenuineIntel 06-55-04', path ' intel-ucode/06-55-04', kvers ''
intel-06-55-04: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-55-04', skipping
microcode_ctl: configuration "intel-06-55-04" is ignored
microcode_ctl: final fw_dir: "/lib/firmware/updates /lib/firmware"
*** Including module: shutdown ***
*** Including modules done ***
*** Installing kernel module dependencies and firmware ***
*** Installing kernel module dependencies and firmware done ***
*** Resolving executable dependencies ***
*** Resolving executable dependencies done***
*** Hardlinking files ***
*** Hardlinking files done ***
*** Stripping files ***
*** Stripping files done ***
*** Generating early-microcode cpio image contents ***
*** No early-microcode cpio image needed ***
*** Store current command line parameters ***
*** Creating image file ***
*** Creating image file done ***
*** Creating initramfs image file '/boot/initramfs-3.10.0-1062.12.1.el7.x86_64.img' done ***
2020-12-17 09:42:39.267750175 Updated initrd with new drivers for kernel 3.10.0-1062.12.1.el7.x86_64.
2020-12-17 09:42:39.276063213 Running mkinitrd...
Executing: /sbin/dracut -v -f --add-drivers " ahci ata_generic ata_piix libahci libata pata_acpi sd_mod sg sr_mod vmw_pvscsi" /boot/initramfs-3.10.0-1062.9.1.el7.x86_64.img 3.10.0-1062.9.1.el7.x86_64
dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
dracut module 'multipath' will not be installed, because command 'multipath' could not be found!
dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsistart' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
dracut module 'multipath' will not be installed, because command 'multipath' could not be found!
dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsistart' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
*** Including module: bash ***
*** Including module: nss-softokn ***
*** Including module: i18n ***
*** Including module: network ***
*** Including module: ifcfg ***
*** Including module: drm ***
*** Including module: plymouth ***
*** Including module: dm ***
Skipping udev rule: 64-device-mapper.rules
Skipping udev rule: 60-persistent-storage-dm.rules
Skipping udev rule: 55-dm.rules
*** Including module: kernel-modules ***
*** Including module: lvm ***
Skipping udev rule: 64-device-mapper.rules
Skipping udev rule: 56-lvm.rules
Skipping udev rule: 60-persistent-storage-lvm.rules
*** Including module: rootfs-block ***
*** Including module: terminfo ***
*** Including module: udev-rules ***
Skipping udev rule: 40-redhat-cpu-hotplug.rules
Skipping udev rule: 91-permissions.rules
*** Including module: biosdevname ***
*** Including module: systemd ***
*** Including module: usrmount ***
*** Including module: base ***
*** Including module: fs-lib ***
*** Including module: microcode_ctl-fw_dir_override ***
microcode_ctl module: mangling fw_dir
microcode_ctl: reset fw_dir to "/lib/firmware/updates /lib/firmware"
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
intel: model '', path ' intel-ucode/*', kvers ''
intel: blacklist ''
No matching microcode files in ' intel-ucode/*' for CPU model 'GenuineIntel 06-3a-00', skipping
microcode_ctl: configuration "intel" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
intel-06-2d-07: model 'GenuineIntel 06-2d-07', path ' intel-ucode/06-2d-07', kvers ''
intel-06-2d-07: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-2d-07', skipping
microcode_ctl: configuration "intel-06-2d-07" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
intel-06-4f-01: model 'GenuineIntel 06-4f-01', path ' intel-ucode/06-4f-01', kvers ' 4.17.0 3.10.0-894 3.10.0-862.6.1 3.10.0-693.35.1 3.10.0-514.52.1 3.10.0-327.70.1 2.6.32-754.1.1 2.6.32-573.58.1 2.6.32-504.71.1 2.6.32-431.90.1 2.6.32-358.90.1'
intel-06-4f-01: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-4f-01', skipping
microcode_ctl: configuration "intel-06-4f-01" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
intel-06-55-04: model 'GenuineIntel 06-55-04', path ' intel-ucode/06-55-04', kvers ''
intel-06-55-04: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-55-04', skipping
microcode_ctl: configuration "intel-06-55-04" is ignored
microcode_ctl: final fw_dir: "/lib/firmware/updates /lib/firmware"
*** Including module: shutdown ***
*** Including modules done ***
*** Installing kernel module dependencies and firmware ***
*** Installing kernel module dependencies and firmware done ***
*** Resolving executable dependencies ***
*** Resolving executable dependencies done***
*** Hardlinking files ***
*** Hardlinking files done ***
*** Stripping files ***
*** Stripping files done ***
*** Generating early-microcode cpio image contents ***
*** No early-microcode cpio image needed ***
*** Store current command line parameters ***
*** Creating image file ***
*** Creating image file done ***
*** Creating initramfs image file '/boot/initramfs-3.10.0-1062.9.1.el7.x86_64.img' done ***
2020-12-17 09:43:04.527835431 Updated initrd with new drivers for kernel 3.10.0-1062.9.1.el7.x86_64.
2020-12-17 09:43:04.536426175 Running mkinitrd...
Executing: /sbin/dracut -v -f --add-drivers " ahci ata_generic ata_piix libahci libata pata_acpi sd_mod sg sr_mod vmw_pvscsi" /boot/initramfs-3.10.0-1127.10.1.el7.x86_64.img 3.10.0-1127.10.1.el7.x86_64
dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
dracut module 'multipath' will not be installed, because command 'multipath' could not be found!
dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsistart' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
dracut module 'multipath' will not be installed, because command 'multipath' could not be found!
dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsistart' could not be found!
dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
*** Including module: bash ***
*** Including module: nss-softokn ***
*** Including module: i18n ***
*** Including module: network ***
*** Including module: ifcfg ***
*** Including module: drm ***
*** Including module: plymouth ***
*** Including module: dm ***
Skipping udev rule: 64-device-mapper.rules
Skipping udev rule: 60-persistent-storage-dm.rules
Skipping udev rule: 55-dm.rules
*** Including module: kernel-modules ***
*** Including module: lvm ***
Skipping udev rule: 64-device-mapper.rules
Skipping udev rule: 56-lvm.rules
Skipping udev rule: 60-persistent-storage-lvm.rules
*** Including module: rootfs-block ***
*** Including module: terminfo ***
*** Including module: udev-rules ***
Skipping udev rule: 40-redhat-cpu-hotplug.rules
Skipping udev rule: 91-permissions.rules
*** Including module: biosdevname ***
*** Including module: systemd ***
*** Including module: usrmount ***
*** Including module: base ***
*** Including module: fs-lib ***
*** Including module: microcode_ctl-fw_dir_override ***
microcode_ctl module: mangling fw_dir
microcode_ctl: reset fw_dir to "/lib/firmware/updates /lib/firmware"
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
intel: model '', path ' intel-ucode/*', kvers ''
intel: blacklist ''
No matching microcode files in ' intel-ucode/*' for CPU model 'GenuineIntel 06-3a-00', skipping
microcode_ctl: configuration "intel" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
intel-06-2d-07: model 'GenuineIntel 06-2d-07', path ' intel-ucode/06-2d-07', kvers ''
intel-06-2d-07: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-2d-07', skipping
microcode_ctl: configuration "intel-06-2d-07" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
intel-06-4f-01: model 'GenuineIntel 06-4f-01', path ' intel-ucode/06-4f-01', kvers ' 4.17.0 3.10.0-894 3.10.0-862.6.1 3.10.0-693.35.1 3.10.0-514.52.1 3.10.0-327.70.1 2.6.32-754.1.1 2.6.32-573.58.1 2.6.32-504.71.1 2.6.32-431.90.1 2.6.32-358.90.1'
intel-06-4f-01: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-4f-01', skipping
microcode_ctl: configuration "intel-06-4f-01" is ignored
microcode_ctl: processing data directory "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
intel-06-55-04: model 'GenuineIntel 06-55-04', path ' intel-ucode/06-55-04', kvers ''
intel-06-55-04: blacklist ''
Current CPU model 'GenuineIntel 06-3a-00' doesn't match configuration CPU model 'GenuineIntel 06-55-04', skipping
microcode_ctl: configuration "intel-06-55-04" is ignored
microcode_ctl: final fw_dir: "/lib/firmware/updates /lib/firmware"
*** Including module: shutdown ***
*** Including modules done ***
*** Installing kernel module dependencies and firmware ***
*** Installing kernel module dependencies and firmware done ***
*** Resolving executable dependencies ***
*** Resolving executable dependencies done***
*** Hardlinking files ***
*** Hardlinking files done ***
*** Stripping files ***
*** Stripping files done ***
*** Generating early-microcode cpio image contents ***
*** No early-microcode cpio image needed ***
*** Store current command line parameters ***
*** Creating image file ***
*** Creating image file done ***
*** Creating initramfs image file '/boot/initramfs-3.10.0-1127.10.1.el7.x86_64.img' done ***
2020-12-17 09:43:29.659147041 Updated initrd with new drivers for kernel 3.10.0-1127.10.1.el7.x86_64.
2020-12-17 09:43:29.681684551 Including finalize/Linux-i386/610_install_grub.sh
/sbin/grub2-probe
2020-12-17 09:43:29.683740899 Skip installing GRUB Legacy boot loader because GRUB 2 is installed (grub-probe or grub2-probe exist).
2020-12-17 09:43:29.689185088 Including finalize/Linux-i386/620_install_elilo.sh
2020-12-17 09:43:29.694349679 Including finalize/Linux-i386/620_install_grub2.sh
2020-12-17 09:43:29.697906146 Installing GRUB2 boot loader
Generating grub configuration file ...
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
device node not found
device node not found
device node not found
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
Found linux image: /boot/vmlinuz-3.10.0-1127.10.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1127.10.1.el7.x86_64.img
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
Found linux image: /boot/vmlinuz-3.10.0-1062.12.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1062.12.1.el7.x86_64.img
Found linux image: /boot/vmlinuz-3.10.0-1062.9.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1062.9.1.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-ae476330e8af422faa719c4aec5becd7
Found initrd image: /boot/initramfs-0-rescue-ae476330e8af422faa719c4aec5becd7.img
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
device node not found
device node not found
device node not found
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
Cannot find list of partitions! (Try mounting /sys.)
done
Installing for i386-pc platform.
grub2-install: warning: cannot open directory `/usr/share/locale': No such file or directory.
Installation finished. No error reported.
Generating grub configuration file ...
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
device node not found
device node not found
device node not found
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
Found linux image: /boot/vmlinuz-3.10.0-1127.10.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1127.10.1.el7.x86_64.img
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
Found linux image: /boot/vmlinuz-3.10.0-1062.12.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1062.12.1.el7.x86_64.img
Found linux image: /boot/vmlinuz-3.10.0-1062.9.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1062.9.1.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-ae476330e8af422faa719c4aec5becd7
Found initrd image: /boot/initramfs-0-rescue-ae476330e8af422faa719c4aec5becd7.img
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
device node not found
device node not found
device node not found
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
Cannot find list of partitions! (Try mounting /sys.)
done
Installing for i386-pc platform.
grub2-install: warning: cannot open directory `/usr/share/locale': No such file or directory.
Installation finished. No error reported.
Generating grub configuration file ...
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
device node not found
device node not found
device node not found
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
Found linux image: /boot/vmlinuz-3.10.0-1127.10.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1127.10.1.el7.x86_64.img
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
device node not found
Found linux image: /boot/vmlinuz-3.10.0-1062.12.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1062.12.1.el7.x86_64.img
Found linux image: /boot/vmlinuz-3.10.0-1062.9.1.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-1062.9.1.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-ae476330e8af422faa719c4aec5becd7
Found initrd image: /boot/initramfs-0-rescue-ae476330e8af422faa719c4aec5becd7.img
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
device node not found
device node not found
device node not found
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
/sys//dev/block/8:0: readlink failed: No such file or directory
device node not found
device node not found
Cannot find list of partitions! (Try mounting /sys.)
done
Installing for i386-pc platform.
grub2-install: warning: cannot open directory `/usr/share/locale': No such file or directory.
Installation finished. No error reported.
2020-12-17 09:43:34.359304880 Including finalize/Linux-i386/630_run_efibootmgr.sh
2020-12-17 09:43:34.363869743 Including finalize/default/880_check_for_mount_by_id.sh
2020-12-17 09:43:34.369922237 Including finalize/default/890_finish_checks.sh
2020-12-17 09:43:34.384810325 Including finalize/default/900_remount_sync.sh
2020-12-17 09:43:34.386349025 Finished running 'finalize' stage in 94 seconds
2020-12-17 09:43:34.387765746 ======================
2020-12-17 09:43:34.389096157 Running 'wrapup' stage
2020-12-17 09:43:34.390399361 ======================
2020-12-17 09:43:34.398204020 Including wrapup/default/500_post_recovery_script.sh
2020-12-17 09:43:34.399826235 Running POST_REVOVERY_SCRIPT '/mnt/local/u02/restore_oracle_u02_database_directory.sh'
/usr/share/rear/wrapup/default/500_post_recovery_script.sh: line 3: /mnt/local/u02/restore_oracle_u02_database_directory.sh: No such file or directory
2020-12-17 09:43:34.405128174 Including wrapup/default/980_good_bye.sh
2020-12-17 09:43:34.409646244 Including wrapup/default/990_copy_logfile.sh
2020-12-17 09:43:34.416899199 Finished running 'wrapup' stage in 0 seconds
2020-12-17 09:43:34.418268539 Finished running recover workflow
2020-12-17 09:43:34.421490064 Exiting rear recover (PID 771) and its descendant processes
2020-12-17 09:43:35.439856151 rear,771 /bin/rear -v recover
`-rear,41394 /bin/rear -v recover
`-pstree,41395 -Aplau 771
/usr/share/rear/lib/_input-output-functions.sh: line 157: kill: (41398) - No such process
2020-12-17 09:43:35.465940918 Running exit tasks
2020-12-17 09:43:35.515542849 Finished in 287 seconds
2020-12-17 09:43:35.517472518 Removing build area /tmp/rear.sdeAhmyZOA3CnWU
removed directory: '/tmp/rear.sdeAhmyZOA3CnWU'
2020-12-17 09:43:35.526477196 End of program reached
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment