Handle hostnames with upper-case letters
[webmin.git] / bacula-backup / backup_config.pl
1 do 'bacula-backup-lib.pl';
2
3 # backup_config_files()
4 # Returns files and directories that can be backed up
5 sub backup_config_files
6 {
7         return ( $config{'bacula_dir'} );
8 }
9
10 # pre_backup(&files)
11 # Called before the files are actually read
12 sub pre_backup
13 {
14 return undef;
15 }
16
17 # post_backup(&files)
18 # Called after the files are actually read
19 sub post_backup
20 {
21 return undef;
22 }
23
24 # pre_restore(&files)
25 # Called before the files are restored from a backup
26 sub pre_restore
27 {
28 return undef;
29 }
30
31 # post_restore(&files)
32 # Called after the files are restored from a backup
33 sub post_restore
34 {
35 return undef;
36 }
37
38 1;