File: copybot.cfg

package info (click to toggle)
python-boto 1.2a-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 720 kB
  • ctags: 1,042
  • sloc: python: 6,709; makefile: 37
file content (47 lines) | stat: -rw-r--r-- 1,215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Your AWS Credentials
#
[Credentials]
aws_access_key_id = <AWS Access Key Here>
aws_secret_access_key = <AWS Secret Key Here>

#
# Fill out this section if you want emails from CopyBot
# when it starts and stops
#
[Notification]
#smtp_host = <your smtp host>
#smtp_user = <your smtp username, if necessary>
#smtp_pass = <your smtp password, if necessary>
#smtp_from = <email address for From: field>
#smtp_to = <email address for To: field>

#
# If you leave this section as is, it will automatically
# update boto from subversion upon start up.
# If you don't want that to happen, comment this out
#
[Boto]
boto_location = /usr/local/boto
boto_update = svn:HEAD

#
# This tells the Pyami code in boto what scripts
# to run during startup
#
[Pyami]
scripts = boto.pyami.copybot.CopyBot

#
# Source bucket and Destination Bucket, obviously.
# If exit_on_completion is false, the instance
# will keep running after the copy operation is
# complete which might be handy for debugging.
# If copy_acls is false, the ACL's will not be
# copied with the objects to the new bucket.
#
[CopyBot]
src_bucket = <your source bucket name>
dst_bucket = <your destination bucket name>
exit_on_completion = true
copy_acls = true