diff options
author | Micah Anderson <micah@riseup.net> | 2005-10-26 23:04:16 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2005-10-26 23:04:16 +0000 |
commit | c4785ba5edb9738f7e9da8c4086a4b6984515dd2 (patch) | |
tree | c632486eca3dc14bc60d2e9430e9772b81477fcd /examples/example.sys | |
parent | d58025ceb0d044b0e21536262c2818a700c4a382 (diff) | |
download | backupninja-c4785ba5edb9738f7e9da8c4086a4b6984515dd2.tar.gz backupninja-c4785ba5edb9738f7e9da8c4086a4b6984515dd2.tar.bz2 |
Moving to autotools standard layout
Diffstat (limited to 'examples/example.sys')
-rw-r--r-- | examples/example.sys | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/example.sys b/examples/example.sys new file mode 100644 index 0000000..9ebd4b2 --- /dev/null +++ b/examples/example.sys @@ -0,0 +1,32 @@ +# +# this config file will save various reports of vital system information. +# by default, all the reports are enabled and are saved in /var/backups. +# +# requires dpkg, sfdisk, and hwinfo +# +# (1) a list of all the packages installed and removed. +# this file can be used to restore the state of installed packages +# by running "dpkg --set-selections < dpkg-selections.txt +# +# (2) the partition table of all disks. +# this partition table can be used to format another disk of +# the same size. this can be handy if using software raid and +# you have a disk go bad. just replace the disk and partition it +# by running "sfdisk /dev/sdb < partitions.sdb.txt" +# (MAKE SURE YOU PARTITION THE CORRECT DISK!!!) +# +# (3) hardware information. +# detailed information on most important aspects of the hardware. +# + +# here are the defaults, commented out: + +# packages = yes +# packagesfile = /var/backups/dpkg-selections.txt + +# partitions = yes +# partitionsfile = /var/backups/partitions.__star__.txt + +# hardware = yes +# hardwarefile = /var/backups/hardware.txt + |