Remove some autogenerated files

This commit is contained in:
Jonas Borgström 2014-02-18 23:10:32 +01:00
parent d551b13a23
commit 052e4f2074
12 changed files with 1 additions and 300 deletions

2
.gitignore vendored
View File

@ -10,4 +10,4 @@ chunker.c
*.pyc
*.pyo
*.so
docs/usage/*.inc

View File

@ -1,22 +0,0 @@
.. _attic_change-passphrase:
attic change-passphrase
-----------------------
::
usage: attic change-passphrase [-h] [-v] REPOSITORY
Change repository key file passphrase
positional arguments:
REPOSITORY
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
Description
~~~~~~~~~~~

View File

@ -1,28 +0,0 @@
.. _attic_check:
attic check
-----------
::
usage: attic check [-h] [-v] [--progress] [--no-progress] REPOSITORY
Check repository consistency
positional arguments:
REPOSITORY repository to check consistency of
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
--progress Report progress status to standard output stream
--no-progress Disable progress reporting
Progress status will be reported on the standard output stream by default when
it is attached to a terminal. Any problems found are printed to the standard
error stream and the command will have a non zero exit code.
Description
~~~~~~~~~~~

View File

@ -1,33 +0,0 @@
.. _attic_create:
attic create
------------
::
usage: attic create [-h] [-v] [-s] [-e PATTERN] [-c SECONDS]
[--do-not-cross-mountpoints] [--numeric-owner]
ARCHIVE PATH [PATH ...]
Create new archive
positional arguments:
ARCHIVE archive to create
PATH paths to archive
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
-s, --stats print statistics for the created archive
-e PATTERN, --exclude PATTERN
exclude paths matching PATTERN
-c SECONDS, --checkpoint-interval SECONDS
write checkpoint every SECONDS seconds (Default: 300)
--do-not-cross-mountpoints
do not cross mount points
--numeric-owner only store numeric user and group identifiers
Description
~~~~~~~~~~~

View File

@ -1,22 +0,0 @@
.. _attic_delete:
attic delete
------------
::
usage: attic delete [-h] [-v] ARCHIVE
Delete archive
positional arguments:
ARCHIVE archive to delete
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
Description
~~~~~~~~~~~

View File

@ -1,27 +0,0 @@
.. _attic_extract:
attic extract
-------------
::
usage: attic extract [-h] [-v] [-e PATTERN] [--numeric-owner]
ARCHIVE [PATH [PATH ...]]
Extract archive contents
positional arguments:
ARCHIVE archive to extract
PATH paths to extract
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
-e PATTERN, --exclude PATTERN
exclude paths matching PATTERN
--numeric-owner only obey numeric user and group identifiers
Description
~~~~~~~~~~~

View File

@ -1,22 +0,0 @@
.. _attic_info:
attic info
----------
::
usage: attic info [-h] [-v] ARCHIVE
Show archive details such as disk space used
positional arguments:
ARCHIVE archive to display information about
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
Description
~~~~~~~~~~~

View File

@ -1,24 +0,0 @@
.. _attic_init:
attic init
----------
::
usage: attic init [-h] [-v] [-e {none,passphrase,keyfile}] REPOSITORY
Initialize an empty repository
positional arguments:
REPOSITORY repository to create
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
-e {none,passphrase,keyfile}, --encryption {none,passphrase,keyfile}
select encryption method
Description
~~~~~~~~~~~

View File

@ -1,23 +0,0 @@
.. _attic_list:
attic list
----------
::
usage: attic list [-h] [-v] REPOSITORY_OR_ARCHIVE
List archive or repository contents
positional arguments:
REPOSITORY_OR_ARCHIVE
repository/archive to list contents of
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
Description
~~~~~~~~~~~

View File

@ -1,25 +0,0 @@
.. _attic_mount:
attic mount
-----------
::
usage: attic mount [-h] [-v] [-f] [-o OPTIONS] ARCHIVE MOUNTPOINT
Mount archive as a FUSE fileystem
positional arguments:
ARCHIVE archive to mount
MOUNTPOINT where to mount filesystem
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
-f, --foreground stay in foreground, do not daemonize
-o OPTIONS Extra mount options
Description
~~~~~~~~~~~

View File

@ -1,48 +0,0 @@
.. _attic_prune:
attic prune
-----------
::
usage: attic prune [-h] [-v] [-H HOURLY] [-d DAILY] [-w WEEKLY] [-m MONTHLY]
[-y YEARLY] [-p PREFIX]
REPOSITORY
Prune repository archives according to specified rules
positional arguments:
REPOSITORY repository to prune
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
-H HOURLY, --hourly HOURLY
number of hourly archives to keep
-d DAILY, --daily DAILY
number of daily archives to keep
-w WEEKLY, --weekly WEEKLY
number of daily archives to keep
-m MONTHLY, --monthly MONTHLY
number of monthly archives to keep
-y YEARLY, --yearly YEARLY
number of yearly archives to keep
-p PREFIX, --prefix PREFIX
only consider archive names starting with this prefix
The prune command prunes a repository by deleting archives not matching any of
the specified retention options. This command is normally used by automated
backup scripts wanting to keep a certain number of historic backups. As an
example, "-d 7" means to keep the latest backup on each day for 7 days. Days
without backups do not count towards the total. The rules are applied from
hourly to yearly, and backups selected by previous rules do not count towards
those of later rules. Dates and times are interpreted in the local timezone,
and weeks go from Monday to Sunday. Specifying a negative number of archives
to keep means that there is no limit. If a prefix is set with -p, then only
archives that start with the prefix are considered for deletion and only those
archives count towards the totals specified by the rules.
Description
~~~~~~~~~~~

View File

@ -1,25 +0,0 @@
.. _attic_verify:
attic verify
------------
::
usage: attic verify [-h] [-v] [-e PATTERN] ARCHIVE [PATH [PATH ...]]
Verify archive consistency
positional arguments:
ARCHIVE archive to verity integrity of
PATH paths to verify
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose output
-e PATTERN, --exclude PATTERN
exclude paths matching PATTERN
Description
~~~~~~~~~~~