More documentation.
[monikop.git] / pokinom.config
blobd04262187703637025d8647764ef03b7e630c152
1 # -*- perl -*-
2 ########################################
3 # Settings
4 ########################################
5 # Possible mount points. Must be unique in their tails after rightmost /.
6 @possible_mount_points = (
7     '/media/platte_01',
8     '/media/platte_02',
9     '/media/platte_03',
10     '/media/platte_04',
11     '/media/platte_05',
12     '/media/platte_06',
13     '/media/platte_07',
14     '/media/platte_08',
15     '/media/platte_09',
16     '/media/platte_10',
17     '/media/platte_11',
18     '/media/platte_12',
19     );
21 # Directory relative to a mount point where new data resides.
22 # Must agree with Monikop's setting.
23 $path_under_mount_point =
24     'measuring_data';
26 # Directories of this name will be deleted.
27 # Must agree with Monikop's setting.
28 $path_under_mount_point_backed_up =
29     'backed_up'
30     ;
32 # Directory name while being deleted by monikop.
33 # Must agree with Monikop's setting.
34 $path_under_mount_point_being_deleted =
35     'being_deleted'
36     ;
38 # Data sink.
39 $destination =
40     'file::media/NEW_DATA';
42 # Credentials of the remote rsync server. String, or 0 if not used.
43 $rsync_username =
44     'messung'
45     ;
46 $rsync_password =
47     'MEssung'
48     ;
50 # Full path to rsync's raw log
51 $rsync_log_prefix =
52     '/home/messung/monikop/log.'
53     ;
55 # Full path to a file to store list of rsync's incompletely transferred files in:
56 $interrupted_prefix =
57     '/home/messung/monikop/interrupted.'
58     ;
60 # Shut down when finished? (default); 1 = yes; 2 = stay on.
61 $shut_down_when_done =
62     0
63     ;
65 # How to turn off
66 $shut_down_action =
67     "sudo halt -p"
68     ;
70 # Rsync's directory (relative to destination) for partially transferred files.
71 # Must agree with Monikop's setting.
72 $rsync_partial_dir_name =
73     '.rsync_partial'
74     ;