Monikop cleaned up.
[monikop.git] / test / pokinom.config.test
blobc6a74a99d49a1044f18239fa4657e7332b51ab4a
1 # -*- perl -*-
2 ##############################################################
3 # Settings
5 # Copy this file to pokinom.config and adapt it to your needs.
6 ##############################################################
7 # Possible mount points.
8 @usable_mount_points = (
9     '/tmp/monikop-test/mnt/03',
10     '/tmp/monikop-test/mnt/04',
11     );
13 # Directory relative to a mount point where new data resides.
14 # Must agree with Monikop's setting.
15 $path_under_mount_point =
16     'measuring_data';
18 # Directories of this name will be deleted.
19 # Must agree with Monikop's setting.
20 $path_under_mount_point_backed_up =
21     'backed_up'
22     ;
24 # Directory name while being deleted by monikop.
25 # Must agree with Monikop's setting.
26 $path_under_mount_point_being_deleted =
27     'being_deleted'
28     ;
30 # Data sink.
31 $destination =
32     'rsync://localhost:2000/test_05_destination/NEW_DATA'
35 # Credentials of the remote rsync server. String, or 0 if not used.
36 $rsync_username =
37     'm-operator'
38     ;
39 $rsync_password =
40     'sEcReT'
41     ;
43 # Full path to rsync's raw log
44 $rsync_log_prefix =
45     '/tmp/monikop-test/pokinom/log.'
46     ;
48 # Full path to a file to store list of rsync's incompletely transferred files in:
49 $interrupted_prefix =
50     '/tmp/monikop-test/pokinom/interrupted.'
51     ;
53 # Shut down when finished? (default); 1 = yes; 2 = stay on.
54 $shut_down_when_done =
55     0
56     ;
58 # How to turn off:
59 $shut_down_action =
60     "sudo halt -p"
61     ;
63 # Rsync's directory (relative to destination) for partially transferred files.
64 # Must agree with Monikop's setting.
65 $rsync_partial_dir_name =
66     '.rsync_partial'
67     ;