TW
a44c1f5092
Merge pull request #676 from ThomasWaldmann/block-dev-restore-docs
...
docs: add example how to restore a raw device, fixes #671
2016-02-18 22:54:52 +01:00
Thomas Waldmann
347778b749
docs: add example how to restore a raw device
...
also: do not use /dev/sda in case someone stupidly tries out the examples.
/dev/sdx should be safe for people who do not understand what they do.
2016-02-18 21:38:31 +01:00
Thomas Waldmann
5e5911dd49
docs: add a hint about the dev headers needed when installing from source
2016-02-18 21:30:44 +01:00
TW
89b2421ed4
Merge pull request #667 from ThomasWaldmann/add-delete-docs
...
docs: add examples for delete (and handle delete after list, …
2016-02-17 01:00:51 +01:00
Thomas Waldmann
91f10e1a29
docs: update example for borg create -v --stats (use iso datetime format), fixes #663
...
the code already was updated after 1.0.0rc1, but not the quickstart docs.
2016-02-17 00:43:05 +01:00
Thomas Waldmann
0b44944b47
docs: add examples for delete (and handle delete after list, before prune), fixes #656
2016-02-17 00:30:33 +01:00
jhemmje
bf31fe3173
docs: Updated examples in usage.rst, fixes #644
2016-02-15 21:38:11 +01:00
jhemmje
7e7c33c3cf
docs: Updated examples in quickstart.rst, fixes #644
2016-02-15 21:38:02 +01:00
jhemmje
aeec29545e
docs: Updated examples in deployment.rst, fixes #644
2016-02-15 21:37:50 +01:00
Mark Lopez
2b8083bb20
Fixed typo.
2016-02-08 19:54:20 -06:00
Mark Lopez
99a3bab68d
Added example to BORG_RSH documentation.
2016-02-07 22:07:30 -06:00
Thomas Waldmann
b1dacd8861
CHANGES minor fixes
2016-02-08 01:11:03 +01:00
Thomas Waldmann
5ffb0fd7cd
borg upgrade: add to docs that only LOCAL repos are supported
2016-02-07 21:08:20 +01:00
Thomas Waldmann
6db6c22cd4
docs: add faq entry and point to issue 636
2016-02-07 21:01:49 +01:00
Thomas Waldmann
50a82e97dd
update CHANGES
2016-02-07 19:45:32 +01:00
Thomas Waldmann
6c278e2e85
docs: formatting fixed
2016-02-07 19:33:26 +01:00
Thomas Waldmann
316f5a345f
docs: borg upgrade also handles borg 0.xx -> 1.0
2016-02-07 19:23:06 +01:00
Thomas Waldmann
2f95c8ea79
docs: use pip extras or requirements file to install llfuse
2016-02-07 19:15:30 +01:00
Thomas Waldmann
c2edfab237
all FUSE related version requirements in 1 place
2016-02-07 19:08:03 +01:00
Thomas Waldmann
69300e473d
document and automate llfuse requirement
2016-02-07 19:03:32 +01:00
Thomas Waldmann
c42f3d07f4
run build_usage
2016-02-07 14:50:39 +01:00
Thomas Waldmann
2170d6e502
fix order in release process docs
...
it is important to first do all the changes that modify the release contents,
then tag/sign it, then build the binaries via vagrant.
Only then the binaries will have the correct version number.
2016-02-07 14:44:49 +01:00
Thomas Waldmann
8a8f0263c8
update CHANGES for 1.0.0rc1
2016-02-07 03:01:26 +01:00
Thomas Waldmann
94451cd2e8
update CHANGES
2016-02-06 20:24:20 +01:00
Thomas Waldmann
4355150efa
docs: OS X binary does not work for older OS X releases, fixes #629
2016-02-04 20:48:43 +01:00
Thomas Waldmann
435d30d61b
docs: updates and fixes
2016-02-01 03:22:02 +01:00
Thomas Waldmann
0a0f483daa
docs about borg serve's special support for forced/original ssh commands, fixes #544
2016-02-01 01:18:37 +01:00
Robin Schneider
a7ed461394
Use `--one-file-system` instead of `--do-not-cross-mountpoints` in docs.
...
Related to #296 in which support for `--do-not-cross-mountpoints` has
been deprecated.
2016-01-31 11:54:01 +01:00
Robin Schneider
57b0ab7475
Fixed spelling in deployment docs.
2016-01-31 11:50:06 +01:00
Thomas Waldmann
a65b7ec339
updates CHANGES
2016-01-30 23:05:40 +01:00
TW
5d93b6cda9
Merge pull request #613 from ThomasWaldmann/xdg-base-dir-keys
...
use xdg base dir for keys
2016-01-30 20:02:38 +01:00
Thomas Waldmann
7773e632db
fix some minor cosmetic code/docs issues
2016-01-30 00:01:13 +01:00
Thomas Waldmann
e06b7162c2
update docs / docstring about new key location
2016-01-28 23:15:49 +01:00
Thomas Waldmann
824e548b9f
add missing example for --list option of borg create
2016-01-28 20:32:30 +01:00
Adam Kouse
dcffa5c6a2
Single quote exclude line that includes an asterisk to prevent shell expansion
2016-01-26 11:51:38 -05:00
Gianfranco Costamagna
37eb22ad55
Delete Ubuntu Vivid, EOL
...
Ubuntu Vivid is not supported anymore.
2016-01-25 09:07:30 +01:00
Thomas Waldmann
d2bfa24814
update CHANGES
2016-01-24 17:54:36 +01:00
Thomas Waldmann
1fc99ec9cd
update docs, remove references to passphrase mode
2016-01-24 16:04:00 +01:00
Thomas Waldmann
b2dedee3c8
refactor yes(), cleanup env var semantics, fixes #355
...
refactorings:
- introduced concept of default answer:
if the answer string is in the defaultish sequence, the return value of yes() will be the default.
e.g. if just pressing <enter> when asked on the console or if an empty string or "default" is
in the environment variable for overriding.
if an environment var has an invalid value and no retries are enabled: return default
if retries are enabled, next retry won't use the env var again, but either ask via input().
- simplify:
only one default - this should be a SAFE default as it is used in some special conditions
like EOF or invalid input with retries disallowed.
no isatty() magic, the "yes" shell command exists, so we could receive input even if it is not from a tty.
- clean:
separate retry flag from retry_msg
2016-01-24 16:04:00 +01:00
Thomas Waldmann
6d615ec30a
change encryption to be on by default (repokey mode)
...
it's 2015, let's be safe-by-default and unsafe-as-option.
also: show default mode in builtin help
2016-01-24 15:44:09 +01:00
Thomas Waldmann
169634f2ca
change the builtin default for --chunker-params, create 2MiB chunks, fixes #343
...
one of the biggest issues with borg < 1.0 was that it had a default target chunk
size of 64kiB, thus it created a lot of chunks, a huge chunk management overhead
(high RAM and disk usage).
2016-01-24 15:44:09 +01:00
Thomas Waldmann
a2843bc939
docs: require python 3.4+
...
remove references to older pythons.
2016-01-24 14:57:48 +01:00
Thomas Waldmann
9ea79d738e
add chunks.archive.d trick to FAQ
2016-01-23 22:57:26 +01:00
Thomas Waldmann
f4561e813f
update CHANGES
2016-01-23 21:43:24 +01:00
Thomas Waldmann
dee1d462cc
ran setup.py build_usage
2016-01-23 20:54:20 +01:00
Thomas Waldmann
162d94b2e4
ran setup.py build_api
2016-01-23 20:52:04 +01:00
Thomas Waldmann
541bbd4a5b
add --list requirement hint
2016-01-23 15:21:38 +01:00
Michael Hanselmann
14934dab08
Update changes for shell-style pattern support
2016-01-23 11:05:17 +01:00
Antoine Beaupré
da7bc4af94
add netbsd install instructions
2016-01-22 14:35:53 -05:00
TW
068c68b24c
Merge pull request #584 from hansmi/shell-pattern
...
Add shell-style pattern syntax
2016-01-22 20:14:37 +01:00