diff options
author | Micah Anderson <micah@riseup.net> | 2007-03-04 10:48:24 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2007-03-04 10:48:24 +0000 |
commit | 913b3850c87fd11fd389802995799b4a41ce7da3 (patch) | |
tree | dc7b3c19922e01fc0039ae10c9743942769932ef /examples/example.sys | |
parent | c0126ff1ef90513ce5df48fc41326704a2cef555 (diff) | |
download | backupninja-913b3850c87fd11fd389802995799b4a41ce7da3.tar.gz backupninja-913b3850c87fd11fd389802995799b4a41ce7da3.tar.bz2 |
fix partitionsfile example to properly use __star__ and note
why this is needed, in case someone wants to change this (Closes: #409192)
Diffstat (limited to 'examples/example.sys')
-rw-r--r-- | examples/example.sys | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/example.sys b/examples/example.sys index a5b349b..2af2c50 100644 --- a/examples/example.sys +++ b/examples/example.sys @@ -25,7 +25,12 @@ # packagesfile = /var/backups/dpkg-selections.txt # partitions = yes -# partitionsfile = /var/backups/partitions.*.txt +# NOTE: the __star__ below will be replaced by the disks found on the +# system (e.g. partitions.sda.txt, partitions.sdb.txt). If you change +# the partitionsfile default below, be sure to include the __star__ +# replacement in the filename, or you will get one file for only one disk, +# the others being written to the same file, and then overwritten by the next. +# partitionsfile = /var/backups/partitions.__star__.txt # dosfdisk = yes # hardware = yes |