blob: 738f91ae7321efbc5243555d247fa0207f06ef6b (
plain)
1 #
2 # /etc/darrc
3 #
4
5 default:
6
7 # list dar version if no command is given
8 -V
9
10
11 create:
12
13 # files we we don't want to save
14 -X "*.*.dar"
15 -X "*.iso"
16
17 # create empty dir for excluded directories
18 -D
19
20 # don't save theses directories
21 -P tmp
22 -P var/tmp
23 -P mnt
24 -P proc
25 -P dev
26 -P sys
27
28 # use gzip compression
29 -z
30
31 # list of files to not try to compress
32 -Z "*.mpg"
33 -Z "*.MPG"
34 -Z "*.jpg"
35 -Z "*.JPG"
36 -Z "*.gz"
37 -Z "*.tgz"
38 -Z "*.bz2"
39 -Z "*.tbz"
40 -Z "*.mp3"
41 -Z "*.mpeg"
42 -Z "*.zip"
43 -Z "*.Z"
44 -Z "*.xz"
45
46 # create slices of 700MB to fit on one CD-ROM
47 -s 700M
48
49 # End of file
|