Merge branch 'master' of ssh://trebb@git.berlios.de/gitroot/monikop
[monikop.git] / pokinom.config.example
blob643d0dc998d75624b7375d4504d8a67ee4f7f33b
1 # (This is -*- perl -*- code.)
2 ########################################################################
3 # Pokinom's configuration file.
5 # Copy this file to `pokinom.config' and adapt it to your needs.
6 ########################################################################
8 # Possible mount points of the removable disks:
9 @usable_mount_points = (
10     '/media/disk_1',
11     '/media/disk_2',
12     '/media/disk_3',
13     );
15 # Directory relative to a mount point where new data resides.
16 # Must agree with Monikop's setting.
17 $path_under_mount_point =
18     'measuring_data';
20 # Directories of this name will be deleted.
21 # Must agree with Monikop's setting.
22 $path_under_mount_point_backed_up =
23     'backed_up'
24     ;
26 # Directory name while being deleted by monikop.
27 # Must agree with Monikop's setting.
28 $path_under_mount_point_being_deleted =
29     'being_deleted'
30     ;
32 # Data Destination:
33 $destination =
34     'big-server::incoming/NEW_DATA'
35     ;
37 # Credentials of the rsync server on Destination. String, or 0 if not used:
38 $rsync_username =
39     'm-operator'
40     ;
41 $rsync_password =
42     'sEcReT'
43     ;
45 # Path and file name prefix to rsync's raw log:
46 $rsync_log_prefix =
47     '~/log/pokinom/log.'
48     ;
50 # Path and file name prefix to a file where a list of rsync's incompletely
51 # transferred files is kept:
52 $interrupted_prefix =
53     '~/log/pokinom/interrupted.'
54     ;
56 # Shut down when finished? (Default, can be toggled by user by pressing F9.)
57 # 1 = yes; 0 = stay on.
58 $shut_down_when_done =
59     0
60     ;
62 # What to do (shutdown) when F3 has been pressed:
63 $shut_down_action =
64     "sudo halt -p"
65     ;
67 # Rsync's directory (relative to mount point of removable disk) for partially
68 # transferred files.
69 # Must agree with Monikop's setting. Make sure your payload data does not
70 # contain an equally-named directory.
71 $rsync_partial_dir_name =
72     '.rsync_partial'
73     ;