mirror of https://github.com/restic/restic.git
Add README and LICENSE
This commit is contained in:
parent
0061207558
commit
5560b39dee
|
@ -0,0 +1,23 @@
|
|||
Copyright (c) 2014, Alexander Neumann
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@ -0,0 +1,39 @@
|
|||
Foreword
|
||||
========
|
||||
|
||||
WARNING: At the moment, consider khepri as alpha quality software, it is not
|
||||
yet finished. Do not use it for real data yet.
|
||||
|
||||
Khepri
|
||||
======
|
||||
|
||||
Khepri is a program that does backups right. It tries to fulfill the
|
||||
following design goals:
|
||||
|
||||
* Easy: Every obstacle that is between you and a working
|
||||
backup solution, especially regarding complex or otherwise hard to use
|
||||
software. Khepri should be easy to configure and use, so that in the
|
||||
unlikely event of a catastrophic data loss, you are safe. Likewise,
|
||||
restoring data should not be complicated.
|
||||
|
||||
* Fast: Backing up your data with khepri should only be
|
||||
limited by your network or harddisk bandwidth. Ideally, you should backup
|
||||
your files every day. Nobody does backups if it is so slow it takes too
|
||||
much time. Furthermore, restoring backups should only transfer data that
|
||||
is needed for the files that are to be restored, so that restoring is
|
||||
also fast.
|
||||
|
||||
* Verifiable: Much more important than backup is restore, so khepri makes it
|
||||
easy to verify regularly that all data can be restored.
|
||||
|
||||
* Secure: Khepri uses cryptography to guarantee integrity and
|
||||
confidentiality of your data. The location where the backups is assumed
|
||||
to be a shared space where others (e.g. a system administrator) is able
|
||||
to access your backups. Khepri is built to secure your data against such
|
||||
attackers.
|
||||
|
||||
License
|
||||
=======
|
||||
|
||||
Khepri is licensed under "BSD 2-Clause License". You can find the complete text
|
||||
in the file `LICENSE`.
|
Loading…
Reference in New Issue