123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- .\" Man page generated from reStructuredText.
- .
- .
- .nr rst2man-indent-level 0
- .
- .de1 rstReportMargin
- \\$1 \\n[an-margin]
- level \\n[rst2man-indent-level]
- level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
- -
- \\n[rst2man-indent0]
- \\n[rst2man-indent1]
- \\n[rst2man-indent2]
- ..
- .de1 INDENT
- .\" .rstReportMargin pre:
- . RS \\$1
- . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
- . nr rst2man-indent-level +1
- .\" .rstReportMargin post:
- ..
- .de UNINDENT
- . RE
- .\" indent \\n[an-margin]
- .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
- .nr rst2man-indent-level -1
- .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
- .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
- ..
- .TH "BORG-CONFIG" 1 "2023-09-14" "" "borg backup tool"
- .SH NAME
- borg-config \- get, set, and delete values in a repository or cache config file
- .SH SYNOPSIS
- .sp
- borg [common options] config [options] [NAME] [VALUE]
- .SH DESCRIPTION
- .sp
- This command gets and sets options in a local repository or cache config file.
- For security reasons, this command only works on local repositories.
- .sp
- To delete a config value entirely, use \fB\-\-delete\fP\&. To list the values
- of the configuration file or the default values, use \fB\-\-list\fP\&. To get and existing
- key, pass only the key name. To set a key, pass both the key name and
- the new value. Keys can be specified in the format \(dqsection.name\(dq or
- simply \(dqname\(dq; the section will default to \(dqrepository\(dq and \(dqcache\(dq for
- the repo and cache configs, respectively.
- .sp
- By default, borg config manipulates the repository config file. Using \fB\-\-cache\fP
- edits the repository cache\(aqs config file instead.
- .SH OPTIONS
- .sp
- See \fIborg\-common(1)\fP for common options of Borg commands.
- .SS arguments
- .INDENT 0.0
- .TP
- .B NAME
- name of config key
- .TP
- .B VALUE
- new value for key
- .UNINDENT
- .SS options
- .INDENT 0.0
- .TP
- .B \-c\fP,\fB \-\-cache
- get and set values from the repo cache
- .TP
- .B \-d\fP,\fB \-\-delete
- delete the key from the config file
- .TP
- .B \-l\fP,\fB \-\-list
- list the configuration of the repo
- .UNINDENT
- .SH EXAMPLES
- .sp
- \fBNOTE:\fP
- .INDENT 0.0
- .INDENT 3.5
- The repository & cache config files are some of the only directly manipulable
- parts of a repository that aren\(aqt versioned or backed up, so be careful when
- making changes!
- .UNINDENT
- .UNINDENT
- .INDENT 0.0
- .INDENT 3.5
- .sp
- .nf
- .ft C
- # find cache directory
- $ cd ~/.cache/borg/$(borg config id)
- # reserve some space
- $ borg config additional_free_space 2G
- # make a repo append\-only
- $ borg config append_only 1
- .ft P
- .fi
- .UNINDENT
- .UNINDENT
- .SH SEE ALSO
- .sp
- \fIborg\-common(1)\fP
- .SH AUTHOR
- The Borg Collective
- .\" Generated by docutils manpage writer.
- .
|