Last change
on this file since 412 was 354, checked in by bcornec, 19 years ago |
import website content + contrib + monitas doc
|
File size:
1.1 KB
|
Rev | Line | |
---|
[354] | 1 | #!/bin/bash
|
---|
| 2 | ####################################################################
|
---|
| 3 | # This is the parameters definition file for backup-kungfu script #
|
---|
| 4 | ####################################################################
|
---|
| 5 |
|
---|
| 6 | # The path to mondoarchive executable
|
---|
| 7 | mondo_path="/usr/local/bin/"
|
---|
| 8 |
|
---|
| 9 | # The name of mondoarchive executable
|
---|
| 10 | mondo_exe="mondoarchive"
|
---|
| 11 |
|
---|
| 12 | # The folder to put the ISO files in
|
---|
| 13 | backup_dir="/home/foo/backup/"
|
---|
| 14 |
|
---|
| 15 | # The list of all the falders to be excludes from the backup
|
---|
| 16 | # Make sure it's wrapped with the quotation marks ("/dir1 dir2 dir3 etc...")
|
---|
| 17 | excludes="/home/foo/backup \
|
---|
| 18 | /home/foo/Downloads "
|
---|
| 19 |
|
---|
| 20 | # The name of the mahcine to be backed up - needed for the directory name
|
---|
| 21 | comp_name="my_comp"
|
---|
| 22 |
|
---|
| 23 | # Parameters to be passed to mondoarchive. Please do not edit if you are not
|
---|
| 24 | # sure what you are doing. For more info - man mondoarchive
|
---|
| 25 | params="-Oi -9 -F -s 700m -S ${backup_dir} -T ${backup_dir}"
|
---|
| 26 |
|
---|
| 27 | # The boot loader you are using. Can be LILO, GRUB or RAW.
|
---|
| 28 | bootloader="LILO"
|
---|
| 29 |
|
---|
| 30 | # The directory where i should launch the backup - make sure there is enough space there.
|
---|
| 31 | from_dir="/home"
|
---|
Note:
See
TracBrowser
for help on using the repository browser.