1
# Copyright 2002 Ben Escoto
3
# This file is part of duplicity.
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.
11
"""Store global configuration information"""
15
# The current version of duplicity
18
# The name of the current host, or None if it cannot be set
19
hostname = socket.getfqdn()
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.
25
# Set to the Path of the archive directory (the directory which
26
# contains the signatures and manifests of the relevent backup
30
# If set, use this value as the current time in seconds instead of
31
# reading from the clock.
34
# Restores will try to bring back the state as of the following time.
35
# If it is None, default to current time.
38
# If set, restore only the subdirectory or file specified, not the
42
# The backend representing the remote side
45
# If set, the Select object which iterates paths in the local
49
# Set to GPGProfile that will be used to compress/uncompress encrypted
50
# files. Replaces encryption_keys, sign_key, and passphrase settings.
53
# If true, filelists and directory statistics will be split on
54
# nulls instead of newlines.
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
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
66
# If set, abort if cannot do an incremental backup. Otherwise if
67
# signatures not found, default to full.