~ubuntu-branches/ubuntu/natty/duplicity/natty-proposed

« back to all changes in this revision

Viewing changes to src/globals.py

Tags: upstream-0.4.8
ImportĀ upstreamĀ versionĀ 0.4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import socket, sys
22
22
 
23
23
# The current version of duplicity
24
 
version = "0.4.3"
 
24
version = "0.4.8"
25
25
 
26
26
# The name of the current host, or None if it cannot be set
27
27
hostname = socket.getfqdn()
80
80
# If set, use short (< 30 char) filenames for all the remote files.
81
81
short_filenames = 0
82
82
 
 
83
# If set, forces a full backup if the last full backup is older than
 
84
# the time specified
 
85
full_force_time = None
 
86
 
83
87
# Used to confirm certain destructive operations like deleting old
84
88
# files.
85
89
force = None
88
92
# be deleted.
89
93
remove_time = None
90
94
 
 
95
# If set, signifies the number of backups chains to keep when perfroming
 
96
# a --remove-all-but-n-full.
 
97
keep_chains = None
 
98
 
91
99
# If set to false, then do not encrypt files on remote system
92
100
encryption = 1
93
101
 
99
107
 
100
108
# FTP data connection type
101
109
ftp_connection = 'passive'
 
110
 
 
111
# Protocol for webdav
 
112
webdav_proto = 'http'
 
113