UI improvements.
[monikop.git] / pokinom.config
blobeb59ddae50c176e57c26daaafd56c3f238abf97b
1 # -*- perl -*-
2 ########################################
3 # Settings
4 ########################################
5 # Possible mount points. Must be unique in their tails after rightmost /.
6 @possible_mount_points = (
7     '/root/tt6',
8     '/root/tt7',
9     '/root/tt8',
10     );
12 # Directory relative to a mount point where new data resides.
13 # Must agree with Monikop's setting.
14 $path_under_mount_point =
15     'measuring_data';
17 # Directories of this name will be deleted.
18 # Must agree with Monikop's setting.
19 $path_under_mount_point_backed_up =
20     'backed_up'
21     ;
23 # Directory name while being deleted by monikop.
24 # Must agree with Monikop's setting.
25 $path_under_mount_point_being_deleted =
26     'being_deleted'
27     ;
29 # Data sink.
30 $destination =
31     'vvastr164::ftp-incoming/NEW_DATA';
33 # Credentials of the remote rsync server. String, or 0 if not used.
34 $rsync_username =
35     0
36     ;
37 $rsync_password =
38     0
39     ;
41 # Full path to rsync's raw log
42 $rsync_log_prefix =
43     '/root/log.'
44     ;
46 # Full path to a file to store list of rsync's incompletely transferred files in:
47 $interrupted_prefix =
48     '/root/interrupted.'
49     ;
51 # Shut down when finished? (default); 1 = yes; 2 = stay on.
52 $shut_down_when_done =
53     0
54     ;
56 # How to turn off
57 $shut_down_action =
58     "touch shut_down_requested"
59     ;
61 # Rsync's directory (relative to destination) for partially transferred files.
62 # Must agree with Monikop's setting.
63 $rsync_partial_dir_name =
64     '.rsync_partial'
65     ;