Skip to content

Commit 85ed485

Browse files
committed
prep for v0.8.3
1 parent d334389 commit 85ed485

File tree

8 files changed

+215
-1783
lines changed

8 files changed

+215
-1783
lines changed

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ znapzend - A ZFS backup system
33
Copyright by Dominik Hassler, Tobias Oetiker and the other people listed
44
in the AUTHORS file.
55

6-
2014-07-29
6+
2014-07-30
77

88
All rights reserved.
99

Makefile.in

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ subdir = .
5353
DIST_COMMON = $(am__configure_deps) $(dist_bin_SCRIPTS) \
5454
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
5555
$(top_srcdir)/configure $(top_srcdir)/init/znapzend.xml.in \
56-
AUTHORS conftools/install-sh conftools/missing
56+
AUTHORS conftools/config.guess conftools/config.sub \
57+
conftools/install-sh conftools/missing
5758
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
5859
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
5960
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
@@ -126,32 +127,23 @@ AUTOCONF = @AUTOCONF@
126127
AUTOHEADER = @AUTOHEADER@
127128
AUTOMAKE = @AUTOMAKE@
128129
AWK = @AWK@
129-
CC = @CC@
130-
CFLAGS = @CFLAGS@
131-
CPP = @CPP@
132-
CPPFLAGS = @CPPFLAGS@
133130
CYGPATH_W = @CYGPATH_W@
134131
DEFS = @DEFS@
135132
ECHO_C = @ECHO_C@
136133
ECHO_N = @ECHO_N@
137134
ECHO_T = @ECHO_T@
138-
EGREP = @EGREP@
139-
EXEEXT = @EXEEXT@
140135
GMAKE = @GMAKE@
141-
GREP = @GREP@
142136
INSTALL = @INSTALL@
143137
INSTALL_DATA = @INSTALL_DATA@
144138
INSTALL_PROGRAM = @INSTALL_PROGRAM@
145139
INSTALL_SCRIPT = @INSTALL_SCRIPT@
146140
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
147-
LDFLAGS = @LDFLAGS@
148141
LIBOBJS = @LIBOBJS@
149142
LIBS = @LIBS@
150143
LTLIBOBJS = @LTLIBOBJS@
151144
MAINT = @MAINT@
152145
MAKEINFO = @MAKEINFO@
153146
MKDIR_P = @MKDIR_P@
154-
OBJEXT = @OBJEXT@
155147
PACKAGE = @PACKAGE@
156148
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
157149
PACKAGE_NAME = @PACKAGE_NAME@
@@ -171,7 +163,6 @@ abs_builddir = @abs_builddir@
171163
abs_srcdir = @abs_srcdir@
172164
abs_top_builddir = @abs_top_builddir@
173165
abs_top_srcdir = @abs_top_srcdir@
174-
ac_ct_CC = @ac_ct_CC@
175166
am__leading_dot = @am__leading_dot@
176167
am__tar = @am__tar@
177168
am__untar = @am__untar@

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ZnapZend 0.8.2
1+
ZnapZend 0.8.3
22
==============
33

44
[![Build Status](https://travis-ci.org/oetiker/znapzend.svg?branch=master)](https://travis-ci.org/oetiker/znapzend)
@@ -17,15 +17,15 @@ Zetup
1717
To zetup znapzend follow these zimple inztructionz
1818

1919
```sh
20-
wget https://github.com/oetiker/znapzend/releases/download/v0.8.2/znapzend-0.8.2.tar.gz
21-
tar zxvf znapzend-0.8.2.tar.gz
22-
cd znapzend-0.8.2
23-
./configure --prefix=/opt/znapzend-0.8.2
20+
wget https://github.com/oetiker/znapzend/releases/download/v0.8.3/znapzend-0.8.3.tar.gz
21+
tar zxvf znapzend-0.8.3.tar.gz
22+
cd znapzend-0.8.3
23+
./configure --prefix=/opt/znapzend-0.8.3
2424
```
2525
if configure complains about missing perl modules, run
2626

2727
```sh
28-
./setup/build-thirdparty.sh /opt/znapzend-0.8.2/thirdparty
28+
./setup/build-thirdparty.sh /opt/znapzend-0.8.3/thirdparty
2929
```
3030

3131
to install the missing modules into the specified directry. This will NOT messup your local perl installation!
@@ -50,19 +50,19 @@ The [znapzend](doc/znapzend.pod) demon is responsible for doing the actual backu
5050
To see if your configuration is any good, run znapzend in noaction mode first.
5151

5252
```sh
53-
/opt/znapzend-0.8.2/bin/znapzend --noaction --debug
53+
/opt/znapzend-0.8.3/bin/znapzend --noaction --debug
5454
```
5555

5656
If you don't want to wait for the scheduler to actually schedule work, you can also force immediate action by calling
5757

5858
```sh
59-
/opt/znapzend-0.8.2/bin/znapzend --noaction --debug --runonce=<src_dataset>
59+
/opt/znapzend-0.8.3/bin/znapzend --noaction --debug --runonce=<src_dataset>
6060
```
6161

6262
then when you are happy with what you got, start it in daemon mode.
6363

6464
```sh
65-
/opt/znapzend-0.8.2/bin/znapzend --daemonize
65+
/opt/znapzend-0.8.3/bin/znapzend --daemonize
6666
```
6767

6868
Best is to integrate znapzend into your system startup sequence, but you can also
@@ -71,8 +71,8 @@ run it by hand.
7171
For illumos OSes you can import the znapzend service manifest provided in the install directory:
7272

7373
```sh
74-
svccfg validate /opt/znapzend-0.8.2/init/znapzend.xml
75-
svccfg import /opt/znapzend-0.8.2/init/znapzend.xml
74+
svccfg validate /opt/znapzend-0.8.3/init/znapzend.xml
75+
svccfg import /opt/znapzend-0.8.3/init/znapzend.xml
7676
```
7777

7878
and then enable the service
@@ -90,4 +90,4 @@ If you want to know how much space your backups are using, try the [znapzendztat
9090
Enjoy!
9191

9292
Dominik Hassler & Tobi Oetiker
93-
2014-07-29
93+
2014-07-30

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.2
1+
0.8.3

0 commit comments

Comments
 (0)