Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Liberate
backupninja
Commits
6b965976
Commit
6b965976
authored
20 years ago
by
elijah
Browse files
Options
Downloads
Patches
Plain Diff
now we use hwinfo which is soooo much better than discover for this.
also, now it actually finds all disks in partition report.
parent
42f5f9a4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
handlers/sys
+24
-24
24 additions, 24 deletions
handlers/sys
with
24 additions
and
24 deletions
handlers/sys
+
24
−
24
View file @
6b965976
...
...
@@ -14,14 +14,14 @@
# (MAKE SURE YOU PARTITION THE CORRECT DISK!!!)
#
# (3) hardware information.
#
a simple report is generated of the kernel modules, the devices,
#
and the model of the hardware which 'discover' is able to detect.
#
write to a text file the important things which hwinfo can discover.
#
getconf packages yes
getconf packagesfile /var/backups/dpkg-selections.txt
getconf partitions yes
getconf partitionsfile /var/backups/partitions.*.txt
getconf partitionsfile
'
/var/backups/partitions.*.txt
'
getconf hardware yes
getconf hardwarefile /var/backups/hardware.txt
...
...
@@ -38,11 +38,15 @@ if [ "$partitions" == "yes" ]; then
warning "can't find sfdisk, skipping partition report."
partitions="no"
fi
if [ ! -x "`which hwinfo`" ]; then
warning "can't find hwinfo, skipping partition report."
partitions="no"
fi
fi
if [ "$hardware" == "yes" ]; then
if [ ! -x "`which
discover
`" ]; then
warning "can't find
discover
, skipping hardware report."
if [ ! -x "`which
hwinfo
`" ]; then
warning "can't find
hwinfo
, skipping hardware report."
hardware="no"
fi
fi
...
...
@@ -59,22 +63,17 @@ fi
## PARTITIONS #############################
#
# here we use sfdisk to dump a listing of all the partitions.
# these files can be used to directly partition a disk of the same size.
#
if [ "$partitions" == "yes" ]; then
for i in `sfdisk -l | grep "^/dev/" | awk '{print $1}'`; do
devices=`echo $i | sed 's/[0-9]//'`
done
devices=`echo $devices | sort | uniq`
devices=`hwinfo --disk | grep "Device File" | cut -d\ -f5`
for dev in $devices; do
# remove leading /dev/
label=${devices#/dev/}
# replace any remaining '/'
[ -b $dev ] || continue
label=${dev#/dev/}
label=${label//\//-}
outputfile=${partitionsfile//__star__/$label}
debug "sfdisk -d $dev > $outputfile"
sfdisk -d $dev > $outputfile
done
fi
...
...
@@ -82,18 +81,19 @@ fi
## HARDWARE #############################
#
# here we use
discover
to dump a table listing all the
# here we use
hwinfo
to dump a table listing all the
# information we can find on the hardware of this machine
#
if [ "$hardware" == "yes" ]; then
printf "%15s%15s %s / %s\n" "kernel module" "device" "vender" "model" > $hardwarefile
printf "%15s%15s %s / %s\n\n" "=============" "======" "======" "=====" >> $hardwarefile
oldifs=$IFS
IFS=$'\t\n'
discover --format="'%m'\t'%d'\t'%V'\t'%M'\n" all | \
while read module device vender model
do printf "%15s%15s %s / %s\n" "${module//\'/}" "${device//\'/}" "${vender//\'/}" "${model//\'/}" >> $hardwarefile
done
IFS=$oldifs
if [ -f $hardwarefile ]; then
rm $hardwarefile
fi
touch $hardwarefile
echo -e "\n\n====================== summary ======================\n" >> $hardwarefile
hwinfo --short --cpu --network --disk --pci >> $hardwarefile
for flag in cpu network disk bios pci; do
echo -e "\n\n====================== $flag ======================\n" >> $hardwarefile
hwinfo --$flag >> $hardwarefile
done
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment