~ed.so/duplicity/reuse-passphrase-for-signing-fix

« back to all changes in this revision

Viewing changes to duplicity/globals.py

  • Committer: bescoto
  • Date: 2002-10-29 01:49:46 UTC
  • Revision ID: vcs-imports@canonical.com-20021029014946-3m4rmm5plom7pl6q
Initial checkin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2002 Ben Escoto
 
2
#
 
3
# This file is part of duplicity.
 
4
#
 
5
# duplicity is free software; you can redistribute it and/or modify it
 
6
# under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA
 
8
# 02139, USA; either version 2 of the License, or (at your option) any
 
9
# later version; incorporated herein by reference.
 
10
 
 
11
"""Store global configuration information"""
 
12
 
 
13
import socket
 
14
 
 
15
# The current version of duplicity
 
16
version = "$version"
 
17
 
 
18
# The name of the current host, or None if it cannot be set
 
19
hostname = socket.getfqdn()
 
20
 
 
21
# The main local path.  For backing up the is the path to be backed
 
22
# up.  For restoring, this is the destination of the restored files.
 
23
local_path = None
 
24
 
 
25
# Set to the Path of the archive directory (the directory which
 
26
# contains the signatures and manifests of the relevent backup
 
27
# collection.
 
28
archive_dir = None
 
29
 
 
30
# If set, use this value as the current time in seconds instead of
 
31
# reading from the clock.
 
32
current_time = None
 
33
 
 
34
# Restores will try to bring back the state as of the following time.
 
35
# If it is None, default to current time.
 
36
restore_time = None
 
37
 
 
38
# If set, restore only the subdirectory or file specified, not the
 
39
# whole root.
 
40
restore_dir = None
 
41
 
 
42
# The backend representing the remote side
 
43
backend = None
 
44
 
 
45
# If set, the Select object which iterates paths in the local
 
46
# source directory.
 
47
select = None
 
48
 
 
49
# Set to GPGProfile that will be used to compress/uncompress encrypted
 
50
# files.  Replaces encryption_keys, sign_key, and passphrase settings.
 
51
gpg_profile = None
 
52
 
 
53
# If true, filelists and directory statistics will be split on
 
54
# nulls instead of newlines.
 
55
null_separator = None
 
56
 
 
57
# Character used like the ":" in time strings like
 
58
# 2002-08-06T04:22:00-07:00.  The colon isn't good for filenames on
 
59
# windows machines.
 
60
time_separator = ":"
 
61
 
 
62
# If this is true, only warn and don't raise fatal error when backup
 
63
# source directory doesn't match previous backup source directory.
 
64
allow_source_mismatch = None
 
65
 
 
66
# If set, abort if cannot do an incremental backup.  Otherwise if
 
67
# signatures not found, default to full.
 
68
incremental = None
 
69