1 # -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
3 HELPERS="$HELPERS sys:general_hardware_and_system_info"
6 require_packages hwinfo debconf-utils
7 checkBox "new sys action" "check options" \
8 "packages" "list of all installed packages." on \
9 "partitions" "the partition table of all disks." on \
10 "sfdisk" "use sfdisk to get partition information." on \
11 "hardware" "detailed hardware information" on
14 packages="packages = no"
15 partitions="partitions = no"
16 sfdisk="dosfdisk = no"
17 hardware="hardware = no"
18 for opt in $result; do
20 '"packages"') packages="packages = yes";;
21 '"partitions"') partitions="partitions = yes";;
22 '"sfdisk"') sfdisk="dosfdisk = yes";;
23 '"hardware"') hardware="hardware = yes";;
26 get_next_filename $configdirectory/10.sys
27 cat > $next_filename <<EOF
32 # packagesfile = /var/backups/dpkg-selections.txt
33 # selectionsfile = /var/backups/debconfsel.txt
34 # partitionsfile = /var/backups/partitions.__star__.txt
35 # hardwarefile = /var/backups/hardware.txt
37 # If vservers = yes in /etc/backupninja.conf then the following variables can
39 # vsnames = all | <vserver1> <vserver2> ... (default = all)
41 chmod 600 $next_filename