diff options
author | Joel Andres Granados <jgranado@redhat.com> | 2008-05-30 17:34:50 +0200 |
---|---|---|
committer | Joel Andres Granados <jgranado@redhat.com> | 2008-05-30 17:34:50 +0200 |
commit | 2ca0839adc44efeb29fded7b86c1306bc734e0cc (patch) | |
tree | e3237d34dda25d6cc0b743a210ca1022fafc0f6a | |
parent | 9325523cd0a2213460975d7d7169dc475ce70df3 (diff) | |
download | firstaidkit-2ca0839adc44efeb29fded7b86c1306bc734e0cc.tar.gz firstaidkit-2ca0839adc44efeb29fded7b86c1306bc734e0cc.tar.xz firstaidkit-2ca0839adc44efeb29fded7b86c1306bc734e0cc.zip |
Two reasons to change the backup directory from /tmp/backup to /tmp/firstaidkitbackup
1. The /tmp/backup might already exist and have some info
2. the directory /tmp/firstaidkitbackup is a bit more specific than the what was used.
-rw-r--r-- | pyfirstaidkit/configuration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyfirstaidkit/configuration.py b/pyfirstaidkit/configuration.py index 18bd359..db1abf8 100644 --- a/pyfirstaidkit/configuration.py +++ b/pyfirstaidkit/configuration.py @@ -40,7 +40,7 @@ def createDefaultConfig(config): config.log.filename = "/var/log/firstaidkit.log" config.plugin.disabled = "" config.backup.method = "file" - config.backup.path = "/tmp/backup" + config.backup.path = "/tmp/firstaidkitbackup" # Setup a sane default root directory. if os.path.isdir("/mnt/sysimage"): |