This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
borg_interface/README.md

85 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

2016-12-13 19:28:37 +01:00
# borg_interface
2017-04-24 21:44:12 +02:00
This application provides an interface to borg backup. At a later point it might
2016-12-14 16:16:55 +01:00
as well work with restic.
2016-12-14 16:28:06 +01:00
### Installation
To install the application either "git clone" it in the folder you want with:
```
git clone https://git.2li.ch/Nebucatnetzer/borg_interface.git
```
or simply download it and extract the zip to your prefered location.:
* https://git.2li.ch/Nebucatnetzer/borg_interface/archive/master.zip
### Starting
Before starting the application make sure that you have configured it properly.
See the section [Configuration](https://git.2li.ch/Nebucatnetzer/borg_interface#configuration) for more details.
2016-12-14 22:09:13 +01:00
To start the application simply execute the borg_interface.sh file.
2016-12-14 16:16:55 +01:00
You will then see a list of options which are fairly self explanatory.
### Configuration
To configure borg_interface please edit the borg_interface.cfg file.
2016-12-14 22:31:26 +01:00
All the options have to be placed under the [DEFAULT] section. The config file
itself can reside at ~/.config/borg_interface/borg_interface.cfg (recommended)
or at ~/.borg_interface.cfg or next to the borg_interface.sh script.
2016-12-14 16:16:55 +01:00
The proper syntax is:
```
option: value
```
or
```
option=value
```
Possible values as of now are:
##### server
define a server on which the archive reside.
##### user
defines the user which has permission to connect to the server.
##### repository_path
defines the path where the repository is set up.
This is needed for both a remote and a local repository.
##### password
defines the repository password
### Example Config
2016-12-14 16:18:07 +01:00
```
2016-12-14 16:19:58 +01:00
[DEFAULT]
2016-12-14 16:16:55 +01:00
server: testserver.local
user: borg
repository_path: /home/borg/backup/repository
password: foo
2016-12-14 16:18:07 +01:00
```
2017-01-01 13:58:54 +01:00
### Backup by using cronjobs
To make it easier to do automated backups I've created the backup_to_external.py
function. To use it simply add a cronjob with:
```
crontab -e
```
Then enter a line like this for example:
```
0 * * * * /path/to/borg_interface/backup_to_external.sh
```
Now your system will take a backup every hour.
2017-04-24 21:44:12 +02:00
NOTE: Currently the backup path is hardcoded in the backup_to_external.py script
2017-01-01 13:58:54 +01:00
but should be quite easy to change. Basically you just need to change the
path_to_backup variable. I will add a configuration option for the backup path
at a later point.