mirror of https://github.com/digint/btrbk
parent
930e2cfbf0
commit
9f96974a5d
|
@ -12,6 +12,7 @@
|
||||||
- bugfix: subvolumes are also allowed for "snapshot_dir" (fixes
|
- bugfix: subvolumes are also allowed for "snapshot_dir" (fixes
|
||||||
issues #1, #2)
|
issues #1, #2)
|
||||||
|
|
||||||
* btrbk-current
|
* btrbk-0.13
|
||||||
- bugfix: allow '@' character for subvolume names (ubuntu prefixes
|
- bugfix: allow '@' character for subvolume names (blocker for
|
||||||
all subvolumes with '@' in its subvolume layout)
|
ubuntu users, since ubuntu prefixes all subvolumes with '@' in its
|
||||||
|
subvolume layout)
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
||||||
PN = btrbk
|
PN = btrbk
|
||||||
VERSION = 0.12
|
VERSION = 0.13
|
||||||
|
|
||||||
PREFIX ?= /usr
|
PREFIX ?= /usr
|
||||||
CONFDIR = /etc
|
CONFDIR = /etc
|
||||||
|
|
2
btrbk
2
btrbk
|
@ -47,7 +47,7 @@ use Date::Calc qw(Today Delta_Days Day_of_Week);
|
||||||
use Getopt::Std;
|
use Getopt::Std;
|
||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
|
|
||||||
our $VERSION = "0.13-dev";
|
our $VERSION = "0.13";
|
||||||
our $AUTHOR = 'Axel Burri <axel@tty0.ch>';
|
our $AUTHOR = 'Axel Burri <axel@tty0.ch>';
|
||||||
our $PROJECT_HOME = '<http://www.digint.ch/btrbk/>';
|
our $PROJECT_HOME = '<http://www.digint.ch/btrbk/>';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH "btrbk" "1" "2015-03-13" "btrbk v0.12" ""
|
.TH "btrbk" "1" "2015-03-19" "btrbk v0.13" ""
|
||||||
.SH NAME
|
.SH NAME
|
||||||
btrbk \- backup tool for btrfs volumes
|
btrbk \- backup tool for btrfs volumes
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH "btrbk.conf" "5" "2015-03-13" "btrbk v0.12" ""
|
.TH "btrbk.conf" "5" "2015-03-19" "btrbk v0.13" ""
|
||||||
.SH NAME
|
.SH NAME
|
||||||
btrbk.conf \- btrbk configuration file
|
btrbk.conf \- btrbk configuration file
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
Loading…
Reference in New Issue