You can subscribe to this list here.
| 2007 |
Jan
(76) |
Feb
(76) |
Mar
(54) |
Apr
(14) |
May
(23) |
Jun
(21) |
Jul
|
Aug
|
Sep
(9) |
Oct
(14) |
Nov
(12) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
|
Feb
(18) |
Mar
(3) |
Apr
|
May
|
Jun
(2) |
Jul
(3) |
Aug
|
Sep
|
Oct
(17) |
Nov
(13) |
Dec
|
| 2009 |
Jan
(1) |
Feb
(1) |
Mar
(15) |
Apr
(2) |
May
(18) |
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
(1) |
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(61) |
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(18) |
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(4) |
Nov
(10) |
Dec
(9) |
| 2012 |
Jan
(10) |
Feb
(23) |
Mar
|
Apr
(5) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(4) |
| 2013 |
Jan
(17) |
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <di...@us...> - 2007-06-08 22:12:00
|
Revision: 523
http://safekeep.svn.sourceforge.net/safekeep/?rev=523&view=rev
Author: dimi
Date: 2007-06-08 15:11:59 -0700 (Fri, 08 Jun 2007)
Log Message:
-----------
Collect releases in the releases/ dir.
Modified Paths:
--------------
safekeep/trunk/Makefile
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2007-06-08 22:02:22 UTC (rev 522)
+++ safekeep/trunk/Makefile 2007-06-08 22:11:59 UTC (rev 523)
@@ -11,6 +11,7 @@
dirname := $(shell basename $(PWD))
rpmroot := $(shell grep '%_topdir' ~/.rpmmacros 2>/dev/null | sed 's/^[^ \t]*[ \t]*//')
svnroot := $(shell LANG=C svn info 2>/dev/null | grep Root | cut -c 18-)
+releasedir := releases
MAN_TXT := doc/safekeep.txt doc/safekeep.conf.txt doc/safekeep.backup.txt
DOC_MAN := doc/safekeep.1 doc/safekeep.conf.5 doc/safekeep.backup.5
DOC_HTML := $(patsubst %.txt,%.html,$(MAN_TXT))
@@ -109,19 +110,20 @@
svn export $(svnroot)/safekeep/tags/$(tagname) $(releasename)
cat $(releasename)/$(name).spec.in | sed 's/^%define version.*/%define version $(version)/' > $(releasename)/$(name).spec
cat $(releasename)/debian/changelog.in | sed 's/^safekeep.*/safekeep ($(version)) unstable; urgency=low/' > $(releasename)/debian/changelog
- tar cz -f $(releasename).tar.gz $(releasename)
+ mkdir -p ${releasedir}; tar cz -f ${releasedir}/$(releasename).tar.gz $(releasename)
rm -rf $(releasename)
distdeb: dist
- tar xz -C /tmp -f $(releasename).tar.gz
- rm -rf $(releasename).tar.gz
+ tar xz -C /tmp -f ${releasedir}/$(releasename).tar.gz
+ rm -rf ${releasedir}/$(releasename).tar.gz
cd /tmp/$(releasename) && debuild --check-dirname-regex 'safekeep(-.*)?'
+ mv /tmp/$(releasename)/safekeep*deb ${releasedir}
distrpm: dist
- rpmbuild -ta $(releasename).tar.gz
- mv $(rpmroot)/SRPMS/$(releasename)-$(release)*.src.rpm .
- mv $(rpmroot)/RPMS/noarch/$(name)-*-$(version)-$(release)*.noarch.rpm .
- rpm --addsign $(releasename)-$(release).src.rpm $(name)-*-$(version)-$(release)*.noarch.rpm
+ rpmbuild -ta ${releasedir}/$(releasename).tar.gz
+ mv $(rpmroot)/SRPMS/$(releasename)-$(release)*.src.rpm ${releasedir}
+ mv $(rpmroot)/RPMS/noarch/$(name)-*-$(version)-$(release)*.noarch.rpm ${releasedir}
+ rpm --addsign ${releasedir}/$(releasename)-$(release).src.rpm ${releasedir}/$(name)-*-$(version)-$(release)*.noarch.rpm
check:
safekeep-test --local
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-06-08 22:02:23
|
Revision: 522
http://safekeep.svn.sourceforge.net/safekeep/?rev=522&view=rev
Author: dimi
Date: 2007-06-08 15:02:22 -0700 (Fri, 08 Jun 2007)
Log Message:
-----------
Account for FC7 adding the distro id (.f7) to the RPM name.
Modified Paths:
--------------
safekeep/trunk/Makefile
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2007-06-08 21:58:03 UTC (rev 521)
+++ safekeep/trunk/Makefile 2007-06-08 22:02:22 UTC (rev 522)
@@ -102,8 +102,8 @@
rpm: tar
rpmbuild -ta $(snapshotname).tar.gz
- mv $(rpmroot)/SRPMS/$(snapshotname)-$(release).src.rpm .
- mv $(rpmroot)/RPMS/noarch/$(name)-*-$(version).$(version_ts)-$(release).noarch.rpm .
+ mv $(rpmroot)/SRPMS/$(snapshotname)-$(release)*.src.rpm .
+ mv $(rpmroot)/RPMS/noarch/$(name)-*-$(version).$(version_ts)-$(release)*.noarch.rpm .
dist:
svn export $(svnroot)/safekeep/tags/$(tagname) $(releasename)
@@ -119,9 +119,9 @@
distrpm: dist
rpmbuild -ta $(releasename).tar.gz
- mv $(rpmroot)/SRPMS/$(releasename)-$(release).src.rpm .
- mv $(rpmroot)/RPMS/noarch/$(name)-*-$(version)-$(release).noarch.rpm .
- rpm --addsign $(releasename)-$(release).src.rpm $(name)-*-$(version)-$(release).noarch.rpm
+ mv $(rpmroot)/SRPMS/$(releasename)-$(release)*.src.rpm .
+ mv $(rpmroot)/RPMS/noarch/$(name)-*-$(version)-$(release)*.noarch.rpm .
+ rpm --addsign $(releasename)-$(release).src.rpm $(name)-*-$(version)-$(release)*.noarch.rpm
check:
safekeep-test --local
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-06-08 21:58:08
|
Revision: 521
http://safekeep.svn.sourceforge.net/safekeep/?rev=521&view=rev
Author: dimi
Date: 2007-06-08 14:58:03 -0700 (Fri, 08 Jun 2007)
Log Message:
-----------
Make sure we don't override user's configuration
Modified Paths:
--------------
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-06-08 21:55:43 UTC (rev 520)
+++ safekeep/trunk/safekeep.spec.in 2007-06-08 21:58:03 UTC (rev 521)
@@ -108,7 +108,7 @@
%attr(700,%{name},%{name}) %dir %{homedir}/.ssh
%dir %{_sysconfdir}/safekeep
%dir %{_sysconfdir}/safekeep/backup.d
-%config %{_sysconfdir}/safekeep/safekeep.conf
+%config(noreplace) %{_sysconfdir}/safekeep/safekeep.conf
%{_sysconfdir}/cron.daily/safekeep
%{_mandir}/man5/safekeep.conf.5*
%{_mandir}/man5/safekeep.backup.5*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-06-08 21:55:44
|
Revision: 520
http://safekeep.svn.sourceforge.net/safekeep/?rev=520&view=rev
Author: dimi
Date: 2007-06-08 14:55:43 -0700 (Fri, 08 Jun 2007)
Log Message:
-----------
Move the man pages for .backup and .conf to the server package.
Modified Paths:
--------------
safekeep/trunk/debian/rules
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/debian/rules
===================================================================
--- safekeep/trunk/debian/rules 2007-06-08 21:49:40 UTC (rev 519)
+++ safekeep/trunk/debian/rules 2007-06-08 21:55:43 UTC (rev 520)
@@ -16,11 +16,11 @@
install -d -m 755 $(CURDIR)/debian/safekeep-common/usr/bin
install -d -m 755 $(CURDIR)/debian/safekeep-common/usr/share/man/man1
- install -d -m 755 $(CURDIR)/debian/safekeep-common/usr/share/man/man5
+ install -d -m 755 $(CURDIR)/debian/safekeep-server/usr/share/man/man5
install -m 755 safekeep $(CURDIR)/debian/safekeep-common/usr/bin
install -m 444 doc/safekeep.1 $(CURDIR)/debian/safekeep-common/usr/share/man/man1
- install -m 444 doc/safekeep.conf.5 $(CURDIR)/debian/safekeep-common/usr/share/man/man5
- install -m 444 doc/safekeep.backup.5 $(CURDIR)/debian/safekeep-common/usr/share/man/man5
+ install -m 444 doc/safekeep.conf.5 $(CURDIR)/debian/safekeep-server/usr/share/man/man5
+ install -m 444 doc/safekeep.backup.5 $(CURDIR)/debian/safekeep-server/usr/share/man/man5
install -d -m 755 $(CURDIR)/debian/safekeep-server/etc/safekeep/backup.d
install -m 664 safekeep.conf $(CURDIR)/debian/safekeep-server/etc/safekeep
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-06-08 21:49:40 UTC (rev 519)
+++ safekeep/trunk/safekeep.spec.in 2007-06-08 21:55:43 UTC (rev 520)
@@ -98,8 +98,6 @@
%defattr(-,root,root,-)
%{_bindir}/safekeep
%{_mandir}/man1/safekeep.1*
-%{_mandir}/man5/safekeep.conf.5*
-%{_mandir}/man5/safekeep.backup.5*
%doc AUTHORS COPYING LICENSE README TODO
%files client
@@ -112,6 +110,8 @@
%dir %{_sysconfdir}/safekeep/backup.d
%config %{_sysconfdir}/safekeep/safekeep.conf
%{_sysconfdir}/cron.daily/safekeep
+%{_mandir}/man5/safekeep.conf.5*
+%{_mandir}/man5/safekeep.backup.5*
%doc sample.backup
%doc AUTHORS COPYING LICENSE
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-06-08 21:49:41
|
Revision: 519
http://safekeep.svn.sourceforge.net/safekeep/?rev=519&view=rev
Author: dimi
Date: 2007-06-08 14:49:40 -0700 (Fri, 08 Jun 2007)
Log Message:
-----------
Bit nicer gecos field.
Modified Paths:
--------------
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-06-08 20:38:56 UTC (rev 518)
+++ safekeep/trunk/safekeep.spec.in 2007-06-08 21:49:40 UTC (rev 519)
@@ -92,7 +92,7 @@
%{_sbindir}/groupadd -f -r %{name}
id %{name} >/dev/null 2>&1 || \
%{_sbindir}/useradd -r -g %{name} -d %{homedir} -s /sbin/nologin \
- -c "Used by safekeep to run backups." %{name}
+ -c "Used by safekeep to run and store backups." %{name}
%files common
%defattr(-,root,root,-)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-06-08 20:39:01
|
Revision: 518
http://safekeep.svn.sourceforge.net/safekeep/?rev=518&view=rev
Author: dimi
Date: 2007-06-08 13:38:56 -0700 (Fri, 08 Jun 2007)
Log Message:
-----------
Remove configuration migration code, it shouldn't be
necessary anymore now that we reached 1.0.
Besides it triggers rpm-lint errors.
Modified Paths:
--------------
safekeep/trunk/Makefile
safekeep/trunk/debian/safekeep-server.postinst
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2007-06-08 19:46:56 UTC (rev 517)
+++ safekeep/trunk/Makefile 2007-06-08 20:38:56 UTC (rev 518)
@@ -87,14 +87,6 @@
install -m 755 doc/safekeep.1 "/usr/share/man/man1/"
install -m 755 doc/safekeep.conf.5 "/usr/share/man/man5/"
install -m 755 doc/safekeep.backup.5 "/usr/share/man/man5/"
- if test -d /etc/safekeep.d; then \
- for file in /etc/safekeep.d/*.conf; do \
- if test -f "$$file"; then \
- mv "$$file" /etc/safekeep/backup.d/`basename "$$file" .conf`.backup \
- fi \
- done \
- rmdir /etc/safekeep.d 2> /dev/null || true \
- fi
tar:
svn export -r {'$(timestamp_svn)'} $(svnroot)/safekeep/trunk $(snapshotname)
Modified: safekeep/trunk/debian/safekeep-server.postinst
===================================================================
--- safekeep/trunk/debian/safekeep-server.postinst 2007-06-08 19:46:56 UTC (rev 517)
+++ safekeep/trunk/debian/safekeep-server.postinst 2007-06-08 20:38:56 UTC (rev 518)
@@ -6,14 +6,6 @@
configure)
adduser --quiet --system --home /var/lib/safekeep safekeep
install -d -m 700 -o safekeep -g nogroup /var/lib/safekeep/.ssh
- if test -d /etc/safekeep.d; then
- for file in /etc/safekeep.d/*.conf; do
- if test -f "$file"; then
- mv "$file" /etc/safekeep/backup.d/`basename "$file" .conf`.backup
- fi
- done
- rmdir /etc/safekeep.d 2> /dev/null || true
- fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-06-08 19:46:56 UTC (rev 517)
+++ safekeep/trunk/safekeep.spec.in 2007-06-08 20:38:56 UTC (rev 518)
@@ -94,16 +94,6 @@
%{_sbindir}/useradd -r -g %{name} -d %{homedir} -s /sbin/nologin \
-c "Used by safekeep to run backups." %{name}
-%post server
-if test -d /etc/safekeep.d; then
- for file in /etc/safekeep.d/*.conf; do
- if test -f "$file"; then
- mv "$file" /etc/safekeep/backup.d/`basename "$file" .conf`.backup
- fi
- done
- rmdir /etc/safekeep.d 2> /dev/null || :
-fi
-
%files common
%defattr(-,root,root,-)
%{_bindir}/safekeep
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-06-08 19:46:57
|
Revision: 517
http://safekeep.svn.sourceforge.net/safekeep/?rev=517&view=rev
Author: dimi
Date: 2007-06-08 12:46:56 -0700 (Fri, 08 Jun 2007)
Log Message:
-----------
Do not package safekeep-test, it's useful only during
development, and creates all sort of rpm-lint errors.
Modified Paths:
--------------
safekeep/trunk/debian/safekeep-server.docs
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/debian/safekeep-server.docs
===================================================================
--- safekeep/trunk/debian/safekeep-server.docs 2007-05-29 04:30:35 UTC (rev 516)
+++ safekeep/trunk/debian/safekeep-server.docs 2007-06-08 19:46:56 UTC (rev 517)
@@ -1,5 +1,4 @@
AUTHORS
COPYING
LICENSE
-safekeep-test
sample.backup
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-05-29 04:30:35 UTC (rev 516)
+++ safekeep/trunk/safekeep.spec.in 2007-06-08 19:46:56 UTC (rev 517)
@@ -122,7 +122,7 @@
%dir %{_sysconfdir}/safekeep/backup.d
%config %{_sysconfdir}/safekeep/safekeep.conf
%{_sysconfdir}/cron.daily/safekeep
-%doc safekeep-test sample.backup
+%doc sample.backup
%doc AUTHORS COPYING LICENSE
%changelog
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-29 04:30:36
|
Revision: 516
http://safekeep.svn.sourceforge.net/safekeep/?rev=516&view=rev
Author: dimi
Date: 2007-05-28 21:30:35 -0700 (Mon, 28 May 2007)
Log Message:
-----------
Do not complain if we can't figure out the SVN root
Modified Paths:
--------------
safekeep/trunk/Makefile
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2007-05-29 04:24:07 UTC (rev 515)
+++ safekeep/trunk/Makefile 2007-05-29 04:30:35 UTC (rev 516)
@@ -10,7 +10,7 @@
tagname := $(shell echo Release-$(releasename) | tr . _)
dirname := $(shell basename $(PWD))
rpmroot := $(shell grep '%_topdir' ~/.rpmmacros 2>/dev/null | sed 's/^[^ \t]*[ \t]*//')
-svnroot := $(shell LANG=C svn info | grep Root | cut -c 18-)
+svnroot := $(shell LANG=C svn info 2>/dev/null | grep Root | cut -c 18-)
MAN_TXT := doc/safekeep.txt doc/safekeep.conf.txt doc/safekeep.backup.txt
DOC_MAN := doc/safekeep.1 doc/safekeep.conf.5 doc/safekeep.backup.5
DOC_HTML := $(patsubst %.txt,%.html,$(MAN_TXT))
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-29 04:24:08
|
Revision: 515
http://safekeep.svn.sourceforge.net/safekeep/?rev=515&view=rev
Author: dimi
Date: 2007-05-28 21:24:07 -0700 (Mon, 28 May 2007)
Log Message:
-----------
Do not complain if .rpmmacros doesn't exist.
Modified Paths:
--------------
safekeep/trunk/Makefile
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2007-05-28 23:58:41 UTC (rev 514)
+++ safekeep/trunk/Makefile 2007-05-29 04:24:07 UTC (rev 515)
@@ -9,7 +9,7 @@
snapshotname:= $(name)-$(version).$(version_ts)
tagname := $(shell echo Release-$(releasename) | tr . _)
dirname := $(shell basename $(PWD))
-rpmroot := $(shell grep '%_topdir' ~/.rpmmacros | sed 's/^[^ \t]*[ \t]*//')
+rpmroot := $(shell grep '%_topdir' ~/.rpmmacros 2>/dev/null | sed 's/^[^ \t]*[ \t]*//')
svnroot := $(shell LANG=C svn info | grep Root | cut -c 18-)
MAN_TXT := doc/safekeep.txt doc/safekeep.conf.txt doc/safekeep.backup.txt
DOC_MAN := doc/safekeep.1 doc/safekeep.conf.5 doc/safekeep.backup.5
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-28 23:58:46
|
Revision: 514
http://safekeep.svn.sourceforge.net/safekeep/?rev=514&view=rev
Author: dimi
Date: 2007-05-28 16:58:41 -0700 (Mon, 28 May 2007)
Log Message:
-----------
We no longer need chsh(1).
Modified Paths:
--------------
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-05-28 15:46:45 UTC (rev 513)
+++ safekeep/trunk/safekeep.spec.in 2007-05-28 23:58:41 UTC (rev 514)
@@ -54,7 +54,6 @@
Group: Applications/System
Requires(pre): %{_sbindir}/useradd
Requires(pre): %{_sbindir}/groupadd
-Requires(pre): %{_bindir}/chsh
Requires: openssh, openssh-clients
Requires: safekeep-common = %{PACKAGE_VERSION}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-28 15:47:23
|
Revision: 513
http://safekeep.svn.sourceforge.net/safekeep/?rev=513&view=rev
Author: dimi
Date: 2007-05-28 08:46:45 -0700 (Mon, 28 May 2007)
Log Message:
-----------
We no longer need to have a working shell for the
safekeep user. Better from a security perspective.
Modified Paths:
--------------
safekeep/trunk/debian/safekeep-server.postinst
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/debian/safekeep-server.postinst
===================================================================
--- safekeep/trunk/debian/safekeep-server.postinst 2007-05-28 15:39:57 UTC (rev 512)
+++ safekeep/trunk/debian/safekeep-server.postinst 2007-05-28 15:46:45 UTC (rev 513)
@@ -5,7 +5,6 @@
case "$1" in
configure)
adduser --quiet --system --home /var/lib/safekeep safekeep
- chsh -s /bin/bash safekeep > /dev/null
install -d -m 700 -o safekeep -g nogroup /var/lib/safekeep/.ssh
if test -d /etc/safekeep.d; then
for file in /etc/safekeep.d/*.conf; do
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-05-28 15:39:57 UTC (rev 512)
+++ safekeep/trunk/safekeep.spec.in 2007-05-28 15:46:45 UTC (rev 513)
@@ -92,9 +92,8 @@
%pre server
%{_sbindir}/groupadd -f -r %{name}
id %{name} >/dev/null 2>&1 || \
-%{_sbindir}/useradd -r -g %{name} -d %{homedir} -s /bin/bash \
+%{_sbindir}/useradd -r -g %{name} -d %{homedir} -s /sbin/nologin \
-c "Used by safekeep to run backups." %{name}
-%{_bindir}/chsh -s /bin/bash %{name} > /dev/null || :
%post server
if test -d /etc/safekeep.d; then
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-28 15:40:03
|
Revision: 512
http://safekeep.svn.sourceforge.net/safekeep/?rev=512&view=rev
Author: dimi
Date: 2007-05-28 08:39:57 -0700 (Mon, 28 May 2007)
Log Message:
-----------
Explicitely specify the shell to be used for running
the command, in case the default shell is not usable.
Suggested by Jeff Spaleta in order to avoid having
a valid shell for the safekeep account.
Modified Paths:
--------------
safekeep/trunk/safekeep
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2007-05-27 14:53:12 UTC (rev 511)
+++ safekeep/trunk/safekeep 2007-05-28 15:39:57 UTC (rev 512)
@@ -662,7 +662,7 @@
info('%s: Key do not exist, generating it now: %s' % (id, privatekeyfile))
gencmd = 'ssh-keygen -q -b 1024 -t dsa -N "" -C "SafeKeep auto generated key at %s@%s" -f %s' % (backup_user, os.uname()[1], privatekeyfile)
if backup_user is not work_user:
- gencmd = 'su -c %s - %s' % (commands.mkarg(gencmd), backup_user)
+ gencmd = 'su -s /bin/sh -c %s - %s' % (commands.mkarg(gencmd), backup_user)
debug(gencmd)
if os.system(gencmd):
error('%s: Failed to generate key %s. Skipping client.' % (id, privatekeyfile))
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-27 14:53:15
|
Revision: 511
http://safekeep.svn.sourceforge.net/safekeep/?rev=511&view=rev
Author: dimi
Date: 2007-05-27 07:53:12 -0700 (Sun, 27 May 2007)
Log Message:
-----------
Create the safekeep user following the Fedora policy:
http://fedoraproject.org/wiki/PackagingDrafts/UsersAndGroups
Modified Paths:
--------------
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-05-27 14:48:02 UTC (rev 510)
+++ safekeep/trunk/safekeep.spec.in 2007-05-27 14:53:12 UTC (rev 511)
@@ -91,7 +91,9 @@
%pre server
%{_sbindir}/groupadd -f -r %{name}
-%{_sbindir}/useradd -r -d %{homedir} -s /bin/bash -u 186 %{name} 2> /dev/null || :
+id %{name} >/dev/null 2>&1 || \
+%{_sbindir}/useradd -r -g %{name} -d %{homedir} -s /bin/bash \
+ -c "Used by safekeep to run backups." %{name}
%{_bindir}/chsh -s /bin/bash %{name} > /dev/null || :
%post server
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-27 14:48:04
|
Revision: 510
http://safekeep.svn.sourceforge.net/safekeep/?rev=510&view=rev
Author: dimi
Date: 2007-05-27 07:48:02 -0700 (Sun, 27 May 2007)
Log Message:
-----------
Explicitely add the group, as per the Fedora policy:
http://fedoraproject.org/wiki/PackagingDrafts/UsersAndGroups
The rationale is:
We want to invoke groupadd explicitly instead of relying on
useradd to create the group for us. This is because useradd
alone would fail if the group it tries to create already
existed.
Modified Paths:
--------------
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-05-27 14:45:20 UTC (rev 509)
+++ safekeep/trunk/safekeep.spec.in 2007-05-27 14:48:02 UTC (rev 510)
@@ -53,6 +53,7 @@
Summary: The SafeKeep backup system (server component)
Group: Applications/System
Requires(pre): %{_sbindir}/useradd
+Requires(pre): %{_sbindir}/groupadd
Requires(pre): %{_bindir}/chsh
Requires: openssh, openssh-clients
Requires: safekeep-common = %{PACKAGE_VERSION}
@@ -89,6 +90,7 @@
rm -rf "%{buildroot}"
%pre server
+%{_sbindir}/groupadd -f -r %{name}
%{_sbindir}/useradd -r -d %{homedir} -s /bin/bash -u 186 %{name} 2> /dev/null || :
%{_bindir}/chsh -s /bin/bash %{name} > /dev/null || :
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-27 14:45:23
|
Revision: 509
http://safekeep.svn.sourceforge.net/safekeep/?rev=509&view=rev
Author: dimi
Date: 2007-05-27 07:45:20 -0700 (Sun, 27 May 2007)
Log Message:
-----------
Use abstract paths
Modified Paths:
--------------
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-05-27 14:42:48 UTC (rev 508)
+++ safekeep/trunk/safekeep.spec.in 2007-05-27 14:45:20 UTC (rev 509)
@@ -52,7 +52,8 @@
%package server
Summary: The SafeKeep backup system (server component)
Group: Applications/System
-Requires(pre): /usr/sbin/useradd, /usr/bin/chsh
+Requires(pre): %{_sbindir}/useradd
+Requires(pre): %{_bindir}/chsh
Requires: openssh, openssh-clients
Requires: safekeep-common = %{PACKAGE_VERSION}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-27 14:42:52
|
Revision: 508
http://safekeep.svn.sourceforge.net/safekeep/?rev=508&view=rev
Author: dimi
Date: 2007-05-27 07:42:48 -0700 (Sun, 27 May 2007)
Log Message:
-----------
The Fedora policy states that we shouldn't delete our user:
http://fedoraproject.org/wiki/PackagingDrafts/UsersAndGroups
Here is the rationale:
We never remove users or groups created by packages. There's
no sane way to check if files owned by those users/groups are
left behind (and even if there would, what would we do to them?),
and leaving those behind with ownerships pointing to now
nonexistent users/groups may result in security issues when a
semantically unrelated user/group is created later and reuses
the UID/GID. Also, in some setups deleting the user/group might
not be possible or/nor desirable (eg. when using a shared remote
user/group database). Cleanup of unused users/groups is left to
the system administrators to take care of if they so desire.
Modified Paths:
--------------
safekeep/trunk/debian/safekeep-server.prerm
safekeep/trunk/safekeep.spec.in
Modified: safekeep/trunk/debian/safekeep-server.prerm
===================================================================
--- safekeep/trunk/debian/safekeep-server.prerm 2007-05-16 15:19:10 UTC (rev 507)
+++ safekeep/trunk/debian/safekeep-server.prerm 2007-05-27 14:42:48 UTC (rev 508)
@@ -4,7 +4,6 @@
case "$1" in
remove|deconfigure)
- deluser safekeep
;;
upgrade)
;;
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-05-16 15:19:10 UTC (rev 507)
+++ safekeep/trunk/safekeep.spec.in 2007-05-27 14:42:48 UTC (rev 508)
@@ -53,7 +53,6 @@
Summary: The SafeKeep backup system (server component)
Group: Applications/System
Requires(pre): /usr/sbin/useradd, /usr/bin/chsh
-Requires(unpre):/usr/sbin/userdel
Requires: openssh, openssh-clients
Requires: safekeep-common = %{PACKAGE_VERSION}
@@ -102,11 +101,6 @@
rmdir /etc/safekeep.d 2> /dev/null || :
fi
-%preun server
-if [ "$1" = "0" ]; then
- %{_sbindir}/userdel %{name} >> /dev/null 2>&1 || :
-fi
-
%files common
%defattr(-,root,root,-)
%{_bindir}/safekeep
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-16 15:19:11
|
Revision: 507
http://safekeep.svn.sourceforge.net/safekeep/?rev=507&view=rev
Author: dimi
Date: 2007-05-16 08:19:10 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Fix misnomer
Modified Paths:
--------------
website/trunk/WebContent/download.shtml
Modified: website/trunk/WebContent/download.shtml
===================================================================
--- website/trunk/WebContent/download.shtml 2007-05-16 15:16:49 UTC (rev 506)
+++ website/trunk/WebContent/download.shtml 2007-05-16 15:19:10 UTC (rev 507)
@@ -75,7 +75,7 @@
</table>
<p>
-Older <a href="releases.shtml">releases...</a>
+<a href="releases.shtml">All releases...</a>
</p>
<a name="svn"></a>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-16 15:16:51
|
Revision: 506
http://safekeep.svn.sourceforge.net/safekeep/?rev=506&view=rev
Author: dimi
Date: 2007-05-16 08:16:49 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Prepare the download page
Modified Paths:
--------------
website/trunk/WebContent/download.shtml
Modified: website/trunk/WebContent/download.shtml
===================================================================
--- website/trunk/WebContent/download.shtml 2007-05-16 15:15:48 UTC (rev 505)
+++ website/trunk/WebContent/download.shtml 2007-05-16 15:16:49 UTC (rev 506)
@@ -13,21 +13,14 @@
<a name="releases"></a>
<h2>Releases</h2>
-<a name="0.9.3"></a>
+<a name="1.0.0"></a>
<p>
-<a href="http://sourceforge.net/project/showfiles.php?group_id=185128&package_id=215518&release_id=504086">SafeKeep 0.9.3</a>
-was released Apr 27, 2007, containing the following main features:
+<a href="http://sourceforge.net/project/showfiles.php?group_id=185128&package_id=215518&release_id=508862">SafeKeep 1.0.0</a>
+was released May 16, 2007, containing the following main features:
</p>
<ul>
- <li>The safekeep account now uses <tt>/bin/bash</tt> instead of
- <tt>/sbin/nologin</tt>, this makes it possbile to deploy and
- manage the SSH keys needed for the backup process; </li>
- <li>Invoke <tt>rdiff-backup</tt> with the <tt>--force</tt> option
- when trimming old data, since there are cases where we can have
- multiple deltas outstanding;</li>
- <li>A number of logging bugs have been fixed, now the logs should
- look a bit better;</li>
- <li>Some documentation improvements.</li>
+ <li>Tested support for database (MySQL and PostgreSQL) dumps;</li>
+ <li>Small documentation improvements.</li>
</ul>
<table>
<tr>
@@ -41,12 +34,12 @@
<b>Red Hat / Fedora</b> binary and source .rpms for RedHat EL 3, 4; Fedora Core 4, 5, 6; CentOS 3, 4, and compatible distributions.
</td>
<td>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-0.9.3-1.src.rpm">safekeep-0.9.3-1.src.rpm</a>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-1.0.0-1.src.rpm">safekeep-1.0.0-1.src.rpm</a>
</td>
<td>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-common-0.9.3-1.noarch.rpm">safekeep-common-0.9.3-1.noarch.rpm</a> <br>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-client-0.9.3-1.noarch.rpm">safekeep-client-0.9.3-1.noarch.rpm</a> <br>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-server-0.9.3-1.noarch.rpm">safekeep-server-0.9.3-1.noarch.rpm</a>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-common-1.0.0-1.noarch.rpm">safekeep-common-1.0.0-1.noarch.rpm</a> <br>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-client-1.0.0-1.noarch.rpm">safekeep-client-1.0.0-1.noarch.rpm</a> <br>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-server-1.0.0-1.noarch.rpm">safekeep-server-1.0.0-1.noarch.rpm</a>
</td>
</tr>
<tr>
@@ -57,12 +50,12 @@
<b>Ubuntu</b> binary and source .debs for Ubuntu Edgy, Dapper, and Breezy
</td>
<td>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-0.9.3.tar.gz">safekeep-0.9.3.tar.gz</a>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-1.0.0.tar.gz">safekeep-1.0.0.tar.gz</a>
</td>
<td>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-common_0.9.3_all.deb">safekeep-common_0.9.3_all.deb</a> <br>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-client_0.9.3_all.deb">safekeep-client_0.9.3_all.deb</a> <br>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-server_0.9.3_all.deb">safekeep-server_0.9.3_all.deb</a>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-common_1.0.0_all.deb">safekeep-common_1.0.0_all.deb</a> <br>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-client_1.0.0_all.deb">safekeep-client_1.0.0_all.deb</a> <br>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-server_1.0.0_all.deb">safekeep-server_1.0.0_all.deb</a>
</td>
</tr>
<tr>
@@ -73,7 +66,7 @@
<b>Linux</b> source tarball for most distributions running Python 2.4 or newer
</td>
<td>
- <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-0.9.3.tar.gz">safekeep-0.9.3.tar.gz</a>
+ <a href="http://prdownloads.sourceforge.net/safekeep/safekeep-1.0.0.tar.gz">safekeep-1.0.0.tar.gz</a>
</td>
<td>
N/A
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-16 15:15:51
|
Revision: 505
http://safekeep.svn.sourceforge.net/safekeep/?rev=505&view=rev
Author: dimi
Date: 2007-05-16 08:15:48 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Prepare the release page
Modified Paths:
--------------
website/trunk/WebContent/releases.shtml
Modified: website/trunk/WebContent/releases.shtml
===================================================================
--- website/trunk/WebContent/releases.shtml 2007-05-16 15:09:17 UTC (rev 504)
+++ website/trunk/WebContent/releases.shtml 2007-05-16 15:15:48 UTC (rev 505)
@@ -4,11 +4,40 @@
<h1>Releases</h1>
<div id="PageMenu">
<span class="PageMenuTitle">On This Page:</span>
+ <a href="#1.0.0">1.0.0</a>
+ <a href="#0.9.3">0.9.3</a>
<a href="#0.9.2">0.9.2</a>
<a href="#0.9.1">0.9.1</a>
<a href="#0.9.0">0.9.0</a>
</div>
+<a name="1.0.0"></a>
+<p>
+<a href="http://sourceforge.net/project/showfiles.php?group_id=185128&package_id=215518&release_id=508862">SafeKeep 1.0.0</a>
+was released May 16, 2007, containing the following main features:
+</p>
+<ul>
+ <li>Tested support for database (MySQL and PostgreSQL) dumps;</li>
+ <li>Small documentation improvements.</li>
+</ul>
+
+<a name="0.9.3"></a>
+<p>
+<a href="http://sourceforge.net/project/showfiles.php?group_id=185128&package_id=215518&release_id=504086">SafeKeep 0.9.3</a>
+was released Apr 27, 2007, containing the following main features:
+</p>
+<ul>
+ <li>The safekeep account now uses <tt>/bin/bash</tt> instead of
+ <tt>/sbin/nologin</tt>, this makes it possbile to deploy and
+ manage the SSH keys needed for the backup process; </li>
+ <li>Invoke <tt>rdiff-backup</tt> with the <tt>--force</tt> option
+ when trimming old data, since there are cases where we can have
+ multiple deltas outstanding;</li>
+ <li>A number of logging bugs have been fixed, now the logs should
+ look a bit better;</li>
+ <li>Some documentation improvements.</li>
+</ul>
+
<a name="0.9.2"></a>
<p>
<a href="http://sourceforge.net/project/showfiles.php?group_id=185128&package_id=215518&release_id=493511">SafeKeep 0.9.2</a>
@@ -30,7 +59,7 @@
<li>Some documentation improvements; </li>
<li>Automatic migration of old configuration to the new format; </li>
<li>A CRITICAL (e.g. data loss) race has been fixed. </li>
- </ul>
+</ul>
<a name="0.9.1"></a>
<p>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-16 15:09:22
|
Revision: 504
http://safekeep.svn.sourceforge.net/safekeep/?rev=504&view=rev
Author: dimi
Date: 2007-05-16 08:09:17 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Trim old news from front-page
Modified Paths:
--------------
website/trunk/WebContent/index.shtml
Modified: website/trunk/WebContent/index.shtml
===================================================================
--- website/trunk/WebContent/index.shtml 2007-05-16 15:08:37 UTC (rev 503)
+++ website/trunk/WebContent/index.shtml 2007-05-16 15:09:17 UTC (rev 504)
@@ -57,129 +57,6 @@
</p>
</blockquote>
-<p class="NewsTitle">Apr 27, 2007: SafeKeep version 0.9.3 (beta) released
-<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
-</p>
-<blockquote>
-<p>
-SafeKeep 0.9.3 was released today. What's new in this release:
-</p>
-<ul>
- <li>The safekeep account now uses <tt>/bin/bash</tt> instead of
- <tt>/sbin/nologin</tt>, this makes it possbile to deploy and
- manage the SSH keys needed for the backup process; </li>
- <li>Invoke <tt>rdiff-backup</tt> with the <tt>--force</tt> option
- when trimming old data, since there are cases where we can have
- multiple deltas outstanding;</li>
- <li>A number of logging bugs have been fixed, now the logs should
- look a bit better;</li>
- <li>Some documentation improvements.</li>
-</ul>
-<p>
-Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
-and Debian-based (e.g. Debian, Ubuntu) distributions are available
-for immediate <a href="download.shtml">download ...</a>
-</p>
-</blockquote>
-
-<p class="NewsTitle">Mar 13, 2007: SafeKeep version 0.9.2 (beta) released
-<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
-</p>
-<blockquote>
-<p>
-SafeKeep 0.9.2 was released today. What's new in this release:
-</p>
-<ul>
- <li>Client configuration files have been moved to
- <tt>/etc/safekeep/backup.d</tt>, and have the
- extension '<tt>.backup</tt>'; </li>
- <li>A new global configuration file has been added in
- <tt>/etc/safekeep/safekeep.conf</tt>; </li>
- <li>A number of command line options have been deprecated
- (<tt>-e/--email, -s/--smtp</tt>), and moved to the global configuration; </li>
- <li>SafeKeep now knows of the user under which the backup will execute,
- making it possible to better deploy keys, avoid the need to invoke
- <tt>safekeep(1)</tt> via <tt>sudo(8)</tt>, and execute the backup
- as root if need be; </li>
- <li>Relative paths now have more intuitive behaviour; </li>
- <li>Some documentation improvements; </li>
- <li>Automatic migration of old configuration to the new format; </li>
- <li>A CRITICAL (e.g. data loss) race has been fixed. </li>
-</ul>
-<p>
-Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
-and Debian-based (e.g. Debian, Ubuntu) distributions are available
-for immediate <a href="download.shtml">download ...</a>
-</p>
-</blockquote>
-
-<p class="NewsTitle">Feb 12, 2007: SafeKeep version 0.9.1 (beta) released
-<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
-</p>
-<blockquote>
-<p>
-SafeKeep 0.9.1 was released today. What's new in this release:
-</p>
-<ul>
- <li>Lots of documentation improvements;</li>
- <li>Prepare the RPMs for Fedora acceptance</li>
- <li>Automatic creation of data store directory</li>
- <li>A few bug fixes</li>
-</ul>
-<p>
-Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
-and Debian-based (e.g. Debian, Ubuntu) distributions are available
-for immediate <a href="download.shtml">download ...</a>
-</p>
-</blockquote>
-
-<p class="NewsTitle">Feb 10, 2007: SafeKeep website get new look
-<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
-</p>
-<blockquote>
-<p>
-The SafeKeep website gets a new color scheme; thanks go to
-<a href="ed...@la...">Eduard Malinschi</a> for doing the work.
-</p>
-</blockquote>
-
-<p class="NewsTitle">Feb 2, 2007: SafeKeep website goes live
-<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
-</p>
-<blockquote>
-<p>
-The SafeKeep site is up-and-running! We will continue to add content
-and improve the rendering in various browsers. Meanwhile, please
-report all problems to
-<a href="mailto:saf...@li...">saf...@li...</a>.
-</p>
-</blockquote>
-
-<p class="NewsTitle">Feb 1, 2007: SafeKeep version 0.9.0 (beta) released
-<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
-</p>
-<blockquote>
-<p>
-SafeKeep 0.9.0 was released today, the first public beta of the project.
-It contains the following main features:
-</p>
-<ul>
- <li>based on <a href="http://www.nongnu.org/rdiff-backup/">rdiff-backup</a>,
- a tried and tested backup solution</li>
- <li>fast and easy deployment, with no configuration stored on the backed-up boxes</li>
- <li>centralized configuration, with reasonable and useful defaults</li>
- <li>built-in support for LVM snapshots, PostgreSQL and MySQL dumps</li>
- <li>secure setup via SSH tunneling, with built-in key management</li>
- <li>binary packages for RPM and DEB based Linux distributions</li>
- <li>clean, easy to understand Python code-base</li>
-</ul>
-<p>
-Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
-and Debian-based (e.g. Debian, Ubuntu) distributions are available
-for immediate <a href="download.shtml">download ...</a>
-</p>
-</blockquote>
-
</div>
<a href="news.shtml">All news ...</a>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-16 15:08:44
|
Revision: 503
http://safekeep.svn.sourceforge.net/safekeep/?rev=503&view=rev
Author: dimi
Date: 2007-05-16 08:08:37 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Announce 1.0.0
Modified Paths:
--------------
website/trunk/WebContent/index.shtml
website/trunk/WebContent/news.shtml
Modified: website/trunk/WebContent/index.shtml
===================================================================
--- website/trunk/WebContent/index.shtml 2007-05-16 15:05:56 UTC (rev 502)
+++ website/trunk/WebContent/index.shtml 2007-05-16 15:08:37 UTC (rev 503)
@@ -39,6 +39,24 @@
<div class="NewsBox">
+<p class="NewsTitle">May 16, 2007: SafeKeep version 1.0.0 (stable) released
+<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
+</p>
+<blockquote>
+<p>
+SafeKeep 1.0.0 was released today. What's new in this release:
+</p>
+<ul>
+ <li>Tested support for database (MySQL and PostgreSQL) dumps;</li>
+ <li>Small documentation improvements.</li>
+</ul>
+<p>
+Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
+and Debian-based (e.g. Debian, Ubuntu) distributions are available
+for immediate <a href="download.shtml">download ...</a>
+</p>
+</blockquote>
+
<p class="NewsTitle">Apr 27, 2007: SafeKeep version 0.9.3 (beta) released
<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
</p>
Modified: website/trunk/WebContent/news.shtml
===================================================================
--- website/trunk/WebContent/news.shtml 2007-05-16 15:05:56 UTC (rev 502)
+++ website/trunk/WebContent/news.shtml 2007-05-16 15:08:37 UTC (rev 503)
@@ -5,6 +5,24 @@
<div class="NewsBox">
+<p class="NewsTitle">May 16, 2007: SafeKeep version 1.0.0 (stable) released
+<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
+</p>
+<blockquote>
+<p>
+SafeKeep 1.0.0 was released today. What's new in this release:
+</p>
+<ul>
+ <li>Tested support for database (MySQL and PostgreSQL) dumps;</li>
+ <li>Small documentation improvements.</li>
+</ul>
+<p>
+Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
+and Debian-based (e.g. Debian, Ubuntu) distributions are available
+for immediate <a href="download.shtml">download ...</a>
+</p>
+</blockquote>
+
<p class="NewsTitle">Apr 27, 2007: SafeKeep version 0.9.3 (beta) released
<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
</p>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-16 15:05:58
|
Revision: 502
http://safekeep.svn.sourceforge.net/safekeep/?rev=502&view=rev
Author: dimi
Date: 2007-05-16 08:05:56 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Add a separate news page
Modified Paths:
--------------
website/trunk/WebContent/index.shtml
Added Paths:
-----------
website/trunk/WebContent/news.shtml
Modified: website/trunk/WebContent/index.shtml
===================================================================
--- website/trunk/WebContent/index.shtml 2007-05-16 15:02:08 UTC (rev 501)
+++ website/trunk/WebContent/index.shtml 2007-05-16 15:05:56 UTC (rev 502)
@@ -163,5 +163,6 @@
</blockquote>
</div>
+<a href="news.shtml">All news ...</a>
<!--#include virtual="footer.shtml" -->
Added: website/trunk/WebContent/news.shtml
===================================================================
--- website/trunk/WebContent/news.shtml (rev 0)
+++ website/trunk/WebContent/news.shtml 2007-05-16 15:05:56 UTC (rev 502)
@@ -0,0 +1,133 @@
+<!--#set var="title" value="SafeKeep News" -->
+<!--#include virtual="header.shtml" -->
+
+<h1>News</h1>
+
+<div class="NewsBox">
+
+<p class="NewsTitle">Apr 27, 2007: SafeKeep version 0.9.3 (beta) released
+<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
+</p>
+<blockquote>
+<p>
+SafeKeep 0.9.3 was released today. What's new in this release:
+</p>
+<ul>
+ <li>The safekeep account now uses <tt>/bin/bash</tt> instead of
+ <tt>/sbin/nologin</tt>, this makes it possbile to deploy and
+ manage the SSH keys needed for the backup process; </li>
+ <li>Invoke <tt>rdiff-backup</tt> with the <tt>--force</tt> option
+ when trimming old data, since there are cases where we can have
+ multiple deltas outstanding;</li>
+ <li>A number of logging bugs have been fixed, now the logs should
+ look a bit better;</li>
+ <li>Some documentation improvements.</li>
+</ul>
+<p>
+Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
+and Debian-based (e.g. Debian, Ubuntu) distributions are available
+for immediate <a href="download.shtml">download ...</a>
+</p>
+</blockquote>
+
+<p class="NewsTitle">Mar 13, 2007: SafeKeep version 0.9.2 (beta) released
+<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
+</p>
+<blockquote>
+<p>
+SafeKeep 0.9.2 was released today. What's new in this release:
+</p>
+<ul>
+ <li>Client configuration files have been moved to
+ <tt>/etc/safekeep/backup.d</tt>, and have the
+ extension '<tt>.backup</tt>'; </li>
+ <li>A new global configuration file has been added in
+ <tt>/etc/safekeep/safekeep.conf</tt>; </li>
+ <li>A number of command line options have been deprecated
+ (<tt>-e/--email, -s/--smtp</tt>), and moved to the global configuration; </li>
+ <li>SafeKeep now knows of the user under which the backup will execute,
+ making it possible to better deploy keys, avoid the need to invoke
+ <tt>safekeep(1)</tt> via <tt>sudo(8)</tt>, and execute the backup
+ as root if need be; </li>
+ <li>Relative paths now have more intuitive behaviour; </li>
+ <li>Some documentation improvements; </li>
+ <li>Automatic migration of old configuration to the new format; </li>
+ <li>A CRITICAL (e.g. data loss) race has been fixed. </li>
+</ul>
+<p>
+Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
+and Debian-based (e.g. Debian, Ubuntu) distributions are available
+for immediate <a href="download.shtml">download ...</a>
+</p>
+</blockquote>
+
+<p class="NewsTitle">Feb 12, 2007: SafeKeep version 0.9.1 (beta) released
+<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
+</p>
+<blockquote>
+<p>
+SafeKeep 0.9.1 was released today. What's new in this release:
+</p>
+<ul>
+ <li>Lots of documentation improvements;</li>
+ <li>Prepare the RPMs for Fedora acceptance</li>
+ <li>Automatic creation of data store directory</li>
+ <li>A few bug fixes</li>
+</ul>
+<p>
+Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
+and Debian-based (e.g. Debian, Ubuntu) distributions are available
+for immediate <a href="download.shtml">download ...</a>
+</p>
+</blockquote>
+
+<p class="NewsTitle">Feb 10, 2007: SafeKeep website get new look
+<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
+</p>
+<blockquote>
+<p>
+The SafeKeep website gets a new color scheme; thanks go to
+<a href="ed...@la...">Eduard Malinschi</a> for doing the work.
+</p>
+</blockquote>
+
+<p class="NewsTitle">Feb 2, 2007: SafeKeep website goes live
+<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
+</p>
+<blockquote>
+<p>
+The SafeKeep site is up-and-running! We will continue to add content
+and improve the rendering in various browsers. Meanwhile, please
+report all problems to
+<a href="mailto:saf...@li...">saf...@li...</a>.
+</p>
+</blockquote>
+
+<p class="NewsTitle">Feb 1, 2007: SafeKeep version 0.9.0 (beta) released
+<img src="images/grey_pixel.gif" width="100%" height="1" alt="">
+</p>
+<blockquote>
+<p>
+SafeKeep 0.9.0 was released today, the first public beta of the project.
+It contains the following main features:
+</p>
+<ul>
+ <li>based on <a href="http://www.nongnu.org/rdiff-backup/">rdiff-backup</a>,
+ a tried and tested backup solution</li>
+ <li>fast and easy deployment, with no configuration stored on the backed-up boxes</li>
+ <li>centralized configuration, with reasonable and useful defaults</li>
+ <li>built-in support for LVM snapshots, PostgreSQL and MySQL dumps</li>
+ <li>secure setup via SSH tunneling, with built-in key management</li>
+ <li>binary packages for RPM and DEB based Linux distributions</li>
+ <li>clean, easy to understand Python code-base</li>
+</ul>
+<p>
+Binary packages for RedHat-based (e.g. RedHat EL, CentOS, Fedora)
+and Debian-based (e.g. Debian, Ubuntu) distributions are available
+for immediate <a href="download.shtml">download ...</a>
+</p>
+</blockquote>
+
+</div>
+
+<!--#include virtual="footer.shtml" -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-16 15:02:17
|
Revision: 501
http://safekeep.svn.sourceforge.net/safekeep/?rev=501&view=rev
Author: dimi
Date: 2007-05-16 08:02:08 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Update online man pages
Modified Paths:
--------------
website/trunk/WebContent/safekeep.backup.html
Modified: website/trunk/WebContent/safekeep.backup.html
===================================================================
--- website/trunk/WebContent/safekeep.backup.html 2007-05-16 14:09:53 UTC (rev 500)
+++ website/trunk/WebContent/safekeep.backup.html 2007-05-16 15:02:08 UTC (rev 501)
@@ -358,9 +358,9 @@
<dd>
<p>
This is the ID by which <tt>safekeep(1)</tt> will address this host.
- If specified it overrides the default value derived from the
- filename. Use of the default value is recommended.
- Optional, defaults to the filename without the <tt>.conf</tt> extension.
+ If specified it overrides the default value derived from the filename.
+ Optional, defaults to the filename without the <tt>.backup</tt> extension.
+ Use of the default value is <strong>highly</strong> recommended.
</p>
</dd>
<dt>
@@ -421,6 +421,10 @@
<tt>safekeep(1)</tt> will attempt to create it automatically. The backup
will fail altogether if the directory can not be created.
Optional, defaults to the client ID, see <tt>/backup/@id</tt>.
+ Use of the default value is <strong>highly</strong> recommended.
+ <strong>NOTE</strong>: if you must set this value explicitely, you must
+ make sure that the path is not shared between different boxes;
+ a shared repository path _will_ result in data loss.
</p>
</dd>
<dt>
@@ -630,7 +634,7 @@
</div>
<div id="footer">
<div id="footer-text">
-Last updated 27-Apr-2007 01:11:02 EDT
+Last updated 16-May-2007 11:00:52 EDT
</div>
</div>
</body>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-05-16 14:09:54
|
Revision: 500
http://safekeep.svn.sourceforge.net/safekeep/?rev=500&view=rev
Author: dimi
Date: 2007-05-16 07:09:53 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Release 1.0.0.
Added Paths:
-----------
safekeep/tags/Release-safekeep-1_0_0/
safekeep/tags/Release-safekeep-1_0_0/ChangeLog
Removed Paths:
-------------
safekeep/tags/Release-safekeep-1_0_0/ChangeLog
Copied: safekeep/tags/Release-safekeep-1_0_0 (from rev 498, safekeep/trunk)
Deleted: safekeep/tags/Release-safekeep-1_0_0/ChangeLog
===================================================================
--- safekeep/trunk/ChangeLog 2007-05-16 14:09:01 UTC (rev 498)
+++ safekeep/tags/Release-safekeep-1_0_0/ChangeLog 2007-05-16 14:09:53 UTC (rev 500)
@@ -1,2214 +0,0 @@
-2007-04-27 05:05 +0000 [r489] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Release 0.9.3 is almost ready...
-
-2007-04-27 05:04 +0000 [r488] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Update the RPM changelog for
- release 0.9.3.
-
-2007-04-27 05:01 +0000 [r487] Dimi Paun <di...@la...>
-
- * safekeep/trunk/ANNOUNCE: Prepare the ANNOUNCE file for the
- release.
-
-2007-04-27 04:48 +0000 [r486] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.backup.txt,
- safekeep/trunk/doc/safekeep.txt: A few more doc tweaks
-
-2007-04-27 04:44 +0000 [r485] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.backup.txt,
- safekeep/trunk/doc/safekeep.txt: Eduard Malinschi
- <ed...@la...> Clarify the docs for database dumps.
-
-2007-04-25 07:51 +0000 [r484] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: F i x d e b u g p r i n t o u t l i k e
- t h i s .
-
-2007-04-24 13:27 +0000 [r483] Stelian Pop <st...@la...>
-
- * safekeep/trunk/debian/control: Ubuntu's chsh is part of 'passwd'
- package.
-
-2007-04-23 21:01 +0000 [r482] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: Fix the 'one letter per line' email
- problem.
-
-2007-04-21 15:19 +0000 [r481] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/safekeep-server.postinst,
- safekeep/trunk/safekeep.spec.in, safekeep/trunk/debian/control:
- Switch the default shell for the 'safekeep' account to /bin/bash.
- We need it to be able to execute commands as 'safekeep' via
- su(1). Also, to help people upgrading, force the shell of already
- existing 'safekeep' users to /bin/bash. We can remove this in the
- future once we know all old users have upgraded to 0.9.3 or
- later.
-
-2007-03-20 20:40 +0000 [r479] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Force data cleanup in case there have
- been multiple backups since the last invocation
-
-2007-03-16 11:55 +0000 [r478] Stelian Pop <st...@la...>
-
- * safekeep/trunk/debian/rules: Shell expansion doesn't seem to
- happen here for whatever reason, do it manually.
-
-2007-03-13 18:52 +0000 [r469] Dimi Paun <di...@la...>
-
- * safekeep/trunk/ChangeLog: Update ChangeLog
-
-2007-03-13 18:51 +0000 [r468] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Bump the version to 0.9.2
-
-2007-03-13 18:41 +0000 [r467] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Make paths absolute only if they exist
-
-2007-03-13 18:36 +0000 [r466] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in, safekeep/trunk/ANNOUNCE: Update
- ANNOUNCE and release changelog
-
-2007-03-13 17:35 +0000 [r465] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Update RPM changelog
-
-2007-03-13 06:25 +0000 [r464] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Use the safekeep user for key
- deployment for now, it is messy otherwise
-
-2007-03-13 05:52 +0000 [r463] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Make sure the paths to the SSH keys are
- absolute
-
-2007-03-13 05:25 +0000 [r462] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Bind / in /mnt/ instead of /tmp/ to
- avoid unpleasant situations with cleanup scripts.
-
-2007-03-13 05:22 +0000 [r461] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Run the --server and --key mode as
- root to test the new user-changing functionality
-
-2007-03-13 05:20 +0000 [r460] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Fix typo
-
-2007-03-09 17:48 +0000 [r459] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Cleanup snapshots as well
-
-2007-03-09 17:40 +0000 [r458] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Fetch the RPMs from the build dirs.
-
-2007-03-09 16:02 +0000 [r457] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Streamline the make targets to be closer
- to the standard ones.
-
-2007-03-09 15:28 +0000 [r456] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.backup.txt,
- safekeep/trunk/debian/safekeep-server.postinst,
- safekeep/trunk/debian/rules, safekeep/trunk/Makefile,
- safekeep/trunk/safekeep-test, safekeep/trunk/safekeep.spec.in,
- safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt,
- safekeep/trunk/debian/safekeep-server.dirs: Rename
- /etc/safekeep/clients.d to /etc/safekeep/backup.d
-
-2007-03-09 02:35 +0000 [r455] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: More tracing
-
-2007-03-09 02:21 +0000 [r454] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/rules, safekeep/trunk/safekeep.spec.in: Fix
- permissions
-
-2007-03-09 01:04 +0000 [r453] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Fix typo
-
-2007-03-09 01:03 +0000 [r452] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in,
- safekeep/trunk/debian/safekeep-server.dirs: Fix the packages to
- include the clients.d dir as well
-
-2007-03-09 00:33 +0000 [r451] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Fix docs
-
-2007-03-08 22:44 +0000 [r450] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update TODO
-
-2007-03-08 22:43 +0000 [r449] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/rules, safekeep/trunk/Makefile,
- safekeep/trunk/debian/safekeep-server.docs,
- safekeep/trunk/safekeep.spec.in, safekeep/trunk/safekeep.cron,
- safekeep/trunk/sample.conf (removed),
- safekeep/trunk/safekeep.conf (added): Install a default
- safekeep.conf in /etc/safekeep
-
-2007-03-08 21:46 +0000 [r448] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Make use of the new config files to
- avoid the deprecation warning in tests
-
-2007-03-08 20:56 +0000 [r447] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.backup.txt: Update docs
-
-2007-03-08 20:53 +0000 [r446] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Look for the client .backup files in the
- clients.d directory that is present in the same directory as the
- safekeep.conf file.
-
-2007-03-08 20:35 +0000 [r445] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt, safekeep/trunk/safekeep,
- safekeep/trunk/sample.conf: Add property that controls the data
- repo base dir
-
-2007-03-08 20:27 +0000 [r444] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt, safekeep/trunk/safekeep,
- safekeep/trunk/sample.conf: Instrument the --keys mode to work
- with a different backup user. Rename the property to
- 'backup.user' instead of just 'user'.
-
-2007-03-08 03:44 +0000 [r443] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt, safekeep/trunk/safekeep,
- safekeep/trunk/sample.conf: Teach safekeep to switch to a given
- user in server mode. Controlled via the 'user' property in
- /etc/safekeep/safekeep.conf
-
-2007-03-07 22:40 +0000 [r442] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt: Allow
- for the explicit spcification of an identity file during key
- management
-
-2007-03-07 21:28 +0000 [r441] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt:
- Deprecate the ability to specify client config files on the
- command line
-
-2007-03-07 19:13 +0000 [r440] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix the local test
-
-2007-03-07 19:13 +0000 [r439] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: We always need a props dict
-
-2007-03-07 19:07 +0000 [r438] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Look at the default configuration files
- only if they exist
-
-2007-03-07 16:54 +0000 [r437] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Mention the new conf file
-
-2007-03-07 16:52 +0000 [r436] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt:
- Deprecate the email options
-
-2007-03-07 16:28 +0000 [r435] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt (added),
- safekeep/trunk/debian/rules, safekeep/trunk/Makefile,
- safekeep/trunk/debian/safekeep-server.docs,
- safekeep/trunk/safekeep.spec.in, safekeep/trunk/sample.conf
- (added): Add man page for safekeep.conf
-
-2007-03-07 15:23 +0000 [r434] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.backup.txt,
- safekeep/trunk/debian/rules, safekeep/trunk/Makefile,
- safekeep/trunk/debian/safekeep-server.docs,
- safekeep/trunk/safekeep.spec.in, safekeep/trunk/sample.backup
- (added), safekeep/trunk/sample.conf (removed): Complete the
- renaming of safekeep.conf.txt into safekeep.backup.txt
-
-2007-03-06 21:15 +0000 [r433] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.backup.txt (added),
- safekeep/trunk/doc/safekeep.conf.txt (removed),
- safekeep/trunk/doc/safekeep.txt: Rename the man page
- safekeep.conf to safekeep.backup to match the new naming
- convention. Adjust the docs to the new directory structure.
-
-2007-03-06 21:07 +0000 [r432] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Read the email properties from the
- global config file
-
-2007-03-06 04:52 +0000 [r431] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Add simple Java-like properties parser
-
-2007-03-06 04:11 +0000 [r430] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Add (partial) support for a global
- configuration file: /etc/safekeep/safekeep.conf Allow the
- -c/--conf switch to take both global conf file and client conf
- files as parameters.
-
-2007-03-04 20:15 +0000 [r429] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Add migration code to source install as
- well
-
-2007-03-04 20:13 +0000 [r428] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/safekeep-server.postinst,
- safekeep/trunk/debian/rules, safekeep/trunk/safekeep.spec.in,
- safekeep/trunk/safekeep,
- safekeep/trunk/debian/safekeep-server.dirs: Move the client
- configuration files in /etc/safekeep/clients.d Change the
- extension of client config files to .backup from .client. Provide
- automatic migration code for DEB and RPM packages.
-
-2007-03-04 17:52 +0000 [r427] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Fix restore docs.
-
-2007-03-04 17:52 +0000 [r426] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update TODO
-
-2007-02-23 22:23 +0000 [r425] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: Do not stop if a single client fails.
- Separate the client outputs to ease log reading.
-
-2007-02-12 06:29 +0000 [r424] Dimi Paun <di...@la...>
-
- * safekeep/trunk/ANNOUNCE: Small wording fix
-
-2007-02-12 05:29 +0000 [r420] Dimi Paun <di...@la...>
-
- * safekeep/trunk/ChangeLog: Update ChangeLog
-
-2007-02-12 05:28 +0000 [r419] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Up the version to 0.9.1
-
-2007-02-12 05:27 +0000 [r418] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update TODO
-
-2007-02-12 05:07 +0000 [r416] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO, safekeep/trunk/ANNOUNCE (added): dd an
- ANNOUNCE file for release 0.9.1
-
-2007-02-12 04:36 +0000 [r415] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README: Add a little intro about the project
-
-2007-02-12 04:30 +0000 [r414] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile, safekeep/trunk/README,
- safekeep/trunk/TODO: Add a way to install SafeKeep from source.
-
-2007-02-12 00:40 +0000 [r413] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: "Jeff Spaleta"
- <jsp...@gm...> Get RPM into shape for a fedora project
- submission.
-
-2007-02-11 01:17 +0000 [r412] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO, safekeep/trunk/doc/safekeep.txt: More on
- include/exclude directives
-
-2007-02-11 01:07 +0000 [r411] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README: Update requirements
-
-2007-02-11 01:03 +0000 [r410] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in, safekeep/trunk/TODO: Python 2.2
- is good enough
-
-2007-02-10 17:00 +0000 [r409] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update TODO
-
-2007-02-07 20:02 +0000 [r405] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update TODO
-
-2007-02-07 01:53 +0000 [r404] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update TODO
-
-2007-02-07 01:42 +0000 [r402] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO, safekeep/trunk/doc/safekeep.txt: Add some
- documentation about data restoration
-
-2007-02-06 16:30 +0000 [r399] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt: Document the auto dir
- creation
-
-2007-02-05 22:33 +0000 [r398] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt: Formatting fixes
-
-2007-02-05 22:18 +0000 [r397] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update TODO
-
-2007-02-05 22:15 +0000 [r396] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Try to automatically create the data
- store dir if it doesn't exist.
-
-2007-02-05 21:01 +0000 [r395] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: When adding lines to authorized_keys,
- always end the last line with a NL
-
-2007-02-05 18:28 +0000 [r394] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt: Avoid
- scanning /etc/safekeep.d in non-client mode.
-
-2007-02-05 06:19 +0000 [r388] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt: By default, we exclude
- non-matching files, which is different from what rdiff-backup
- does. So make it more explicit in the documentation.
-
-2007-02-05 06:13 +0000 [r387] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt: Correct and clarify where
- the data will go by default.
-
-2007-02-05 06:07 +0000 [r386] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update the TODO
-
-2007-02-04 05:18 +0000 [r369] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Eduard Malinschi
- <ed...@la...> Fix typo.
-
-2007-02-02 01:16 +0000 [r364] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Fix copy and paste bug
-
-2007-02-02 01:05 +0000 [r362] Dimi Paun <di...@la...>
-
- * safekeep/trunk/ChangeLog: Update ChangeLog one more time
-
-2007-02-02 00:57 +0000 [r361] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Whitespace fix
-
-2007-02-02 00:53 +0000 [r360] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Add documentation about keys
- deployment
-
-2007-02-02 00:43 +0000 [r359] Dimi Paun <di...@la...>
-
- * safekeep/trunk/TODO: Update TODO
-
-2007-02-02 00:40 +0000 [r358] Dimi Paun <di...@la...>
-
- * safekeep/trunk/ChangeLog: Update ChangeLog
-
-2007-02-02 00:39 +0000 [r357] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Bump version to 0.9.0
-
-2007-02-02 00:36 +0000 [r356] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Adjust test to match the new
- structure used by the repos
-
-2007-02-02 00:06 +0000 [r355] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Fix safekeep.conf missing
- extension
-
-2007-02-01 22:18 +0000 [r354] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt: Finish documenting the
- configuration format
-
-2007-02-01 15:32 +0000 [r353] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/rules, safekeep/trunk/safekeep.spec.in:
- Install the daily cron task as 'safekeep', not 'safekeep.cron' to
- follow the common practice.
-
-2007-02-01 04:13 +0000 [r352] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt: Start documenting the
- configuration format
-
-2007-02-01 03:43 +0000 [r351] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/rules: Keep the file names consistent
- between the .deb and .rpm packages. If we decide to rename them,
- we'll do so across both formats.
-
-2007-02-01 03:40 +0000 [r350] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Repeat the generic description
- of the package in all subpackages.
-
-2007-01-31 23:49 +0000 [r349] Stelian Pop <st...@la...>
-
- * safekeep/trunk/Makefile: Build DEBs in /tmp to avoid cluttering
- the source dir.
-
-2007-01-31 23:28 +0000 [r348] Stelian Pop <st...@la...>
-
- * safekeep/trunk/debian/docs (removed),
- safekeep/trunk/debian/safekeep-common.dirs (added),
- safekeep/trunk/debian/safekeep-server.postinst (added),
- safekeep/trunk/debian/rules,
- safekeep/trunk/debian/safekeep-server.prerm (added),
- safekeep/trunk/debian/safekeep-server.docs (added),
- safekeep/trunk/debian/control,
- safekeep/trunk/debian/safekeep-common.docs (added),
- safekeep/trunk/debian/dirs (removed),
- safekeep/trunk/debian/safekeep-client.docs (added),
- safekeep/trunk/debian/safekeep-server.dirs (added): Update the
- DEB packaging: - split into -server, -client, -common subpackages
- - create the 'safekeep' user for the server - install a daily
- cron task - etc.
-
-2007-01-31 20:57 +0000 [r347] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Typo.
-
-2007-01-31 20:06 +0000 [r346] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.conf.txt (added),
- safekeep/trunk/Makefile, safekeep/trunk/safekeep.spec.in: Add
- skeletal man page for the configuration file.
-
-2007-01-31 19:25 +0000 [r345] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in, safekeep/trunk/TODO (added): Add
- a TODO file with ideas for the future
-
-2007-01-31 16:20 +0000 [r344] Dimi Paun <di...@la...>
-
- * safekeep/trunk/ChangeLog (added): Add a ChangeLog file
-
-2007-01-31 16:19 +0000 [r343] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile, safekeep/trunk/doc/users (added): Add
- ChangeLog generation support
-
-2007-01-31 15:55 +0000 [r342] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.cron: Make the reports look a bit more
- interesting.
-
-2007-01-31 15:21 +0000 [r341] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in, safekeep/trunk/safekeep.cron
- (added): Install a daily cron task for safekeep
-
-2007-01-30 19:31 +0000 [r340] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Use the regular logging functions to
- complain about ignored files
-
-2007-01-30 19:21 +0000 [r339] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Make use of the standard safekeep
- user instead of inventing our own backup-op user.
-
-2007-01-30 17:15 +0000 [r338] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Create the .ssh dir at install
- time too
-
-2007-01-30 16:55 +0000 [r337] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix string interpolation
-
-2007-01-30 16:27 +0000 [r336] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix installation of packages on the
- test boxes
-
-2007-01-30 15:33 +0000 [r335] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: The new packages superseed the
- old ones
-
-2007-01-30 15:32 +0000 [r334] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Make sure the version we expect
- ends up being installed
-
-2007-01-30 15:25 +0000 [r333] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Instrument the fulltest to deal
- with the multiple packages
-
-2007-01-30 15:01 +0000 [r332] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Add the licensing files to all
- packages
-
-2007-01-30 04:45 +0000 [r331] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Create the homedir in the build
- root
-
-2007-01-30 04:43 +0000 [r330] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Create the home dir during build
-
-2007-01-29 21:46 +0000 [r329] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Split RPM into 3 packages:
- -common, -client, -server Add a bunch more Requires, etc. Create
- a 'safekeep' user for the server part.
-
-2007-01-29 19:13 +0000 [r328] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Fix the example with the latest
- results
-
-2007-01-29 17:22 +0000 [r327] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Ignode /selinux/ too.
-
-2007-01-29 05:40 +0000 [r326] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: A more compact representation for the
- excludes
-
-2007-01-29 05:22 +0000 [r325] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Exclude unneeded stuff from named's
- chroot. No need to include /, it's implicit in rdiff-backup.
-
-2007-01-29 01:31 +0000 [r324] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: "Stelian Pop" <st...@la...>
- Invoke remote command explicitly in case the wrong SSH key is
- used with the client.
-
-2007-01-28 23:34 +0000 [r323] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: Let the user know we're excluding some
- files because of wrong suffix.
-
-2007-01-28 23:23 +0000 [r322] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: List the options in the same order as
- the modes.
-
-2007-01-27 18:13 +0000 [r321] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt: Remove
- the --client mode from the online help screen, this is an
- internal-only mode, and it just makes the output more confusing
- and difficult to read.
-
-2007-01-27 18:10 +0000 [r320] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt: We need
- to support the -c/--conf in --keys mode too
-
-2007-01-27 17:11 +0000 [r319] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt: Rename
- the -m option to -s, now that it's available.
-
-2007-01-27 17:09 +0000 [r318] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt: Use
- sendmail is no SMTP server is specified.
-
-2007-01-26 23:25 +0000 [r317] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Use the standard os.getenv() instead our
- ad-hoc version
-
-2007-01-26 23:16 +0000 [r316] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Document some more realistic
- configuration examples.
-
-2007-01-26 22:17 +0000 [r315] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Protect against duplicated client IDs
-
-2007-01-26 22:04 +0000 [r314] Dimi Paun <di...@la...>
-
- * safekeep/trunk/sample.conf: Cleanup a bit the sample file
-
-2007-01-26 22:02 +0000 [r313] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/docs, safekeep/trunk/sample.cfg (removed),
- safekeep/trunk/safekeep-test, safekeep/trunk/safekeep.spec.in,
- safekeep/trunk/safekeep, safekeep/trunk/sample.conf (added),
- safekeep/trunk/doc/safekeep.txt: Rename the .cfg extension to
- .conf, and the --cfg option to --conf
-
-2007-01-26 21:46 +0000 [r312] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test, safekeep/trunk/safekeep,
- safekeep/trunk/doc/safekeep.txt: Rename the -C option to -c now
- that it is available.
-
-2007-01-26 21:16 +0000 [r311] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Cleanup the docs a bit
-
-2007-01-26 21:13 +0000 [r310] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile, safekeep/trunk/doc/Makefile (removed):
- Merge the doc Makefile into the main Makefile. It makes it easier
- if everything is in one place.
- http://members.canb.auug.org.au/~millerp/rmch/recu-make-cons-harm.html
-
-2007-01-26 20:35 +0000 [r309] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Less confusing name
-
-2007-01-26 20:28 +0000 [r308] Dimi Paun <di...@la...>
-
- * safekeep/trunk/doc/safekeep.txt: Update documentation
-
-2007-01-26 19:03 +0000 [r307] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Cleanup code, we check now the arguments
- ahead of time.
-
-2007-01-26 18:40 +0000 [r306] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Add support for filtering by client-ids
- in server mode
-
-2007-01-26 18:27 +0000 [r305] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Complain if inappropriate options are
- used in selected mode
-
-2007-01-26 18:18 +0000 [r304] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Validate arguments as clientIDs where
- appropriate
-
-2007-01-26 18:10 +0000 [r303] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Transform the list of configurations
- into a dictionary. It should make it easier to look through the
- known ids.
-
-2007-01-26 16:47 +0000 [r302] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Default to server mode only at the end.
- Small cleanups.
-
-2007-01-26 16:33 +0000 [r301] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Allow only one mode at a time.
-
-2007-01-26 16:32 +0000 [r300] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Teach usage() to exit if need be,
- simplify the code a bit.
-
-2007-01-26 16:26 +0000 [r299] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Be a little more careful when accessing
- environment variables, provide fallbacks in case they are not
- defined
-
-2007-01-26 11:04 +0000 [r298] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: Fix backup.log marker logic.
-
-2007-01-26 04:27 +0000 [r297] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt: Make
- the keys options more like options rather then mode selectors.
- This means that any combination of them is now valid as input on
- the command line. Addition documentation work to match these
- changes.
-
-2007-01-26 04:09 +0000 [r296] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep, safekeep/trunk/doc/safekeep.txt: Remove
- the short options for selecting the operation mode, since they
- were polluting the namespace and they weren't all that useful: -
- the server mode is the defalt mode, no switch is required - the
- client mode should never be invoked manually - the keys mode
- benefits slighly from the additional clarity. This should allow
- us in the future more freedom to add other options with those
- names.
-
-2007-01-26 03:56 +0000 [r295] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Reorganize the help message for clarity
-
-2007-01-25 18:36 +0000 [r294] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: According to the FHS
- (http://www.pathname.com/fhs/), we can also exclude the following
- dirs: /var/cache /var/lock /var/run /var/tmp
-
-2007-01-25 16:46 +0000 [r293] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Use os.environ['LOGNAME'] instead of
- os.getlogin() to avoid errors when the controlling terminal goes
- missing (http://docs.python.org/lib/os-procinfo.html)
-
-2007-01-25 14:50 +0000 [r292] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: Fix 'safekeep -k --deploy' problem.
-
-2007-01-25 04:57 +0000 [r291] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Always nuke yum's cache of our
- repo, it's changing too fast and causes problems
-
-2007-01-25 04:47 +0000 [r290] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Create the config dir so it is
- available to receive config files
-
-2007-01-25 04:21 +0000 [r289] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix server namer.
-
-2007-01-25 04:09 +0000 [r288] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: If the backup.log exists, mark current
- possition and dump starting from the marker only
-
-2007-01-24 19:58 +0000 [r287] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Provide a reasonable set of
- includes/excludes if not specified
-
-2007-01-23 22:11 +0000 [r286] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: Create dirs for the man page too
-
-2007-01-23 22:04 +0000 [r285] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README: Document the build requirements
-
-2007-01-23 22:04 +0000 [r284] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep.spec.in: We need to create the dir for
- the binary
-
-2007-01-12 11:53 +0000 [r281] Stelian Pop <st...@la...>
-
- * safekeep/trunk/debian/rules, safekeep/trunk/debian/control: Fix
- the debian build rules for the manpage.
-
-2007-01-12 11:45 +0000 [r280] Stelian Pop <st...@la...>
-
- * safekeep/trunk/debian/rules, safekeep/trunk/Makefile,
- safekeep/trunk/sample.cfg, safekeep/trunk/doc/callouts.xsl
- (added), safekeep/trunk/safekeep.spec.in,
- safekeep/trunk/debian/control, safekeep/trunk/doc/Makefile
- (added), safekeep/trunk/safekeep, safekeep/trunk/doc (added),
- safekeep/trunk/doc/safekeep.txt (added),
- safekeep/trunk/doc/asciidoc.conf (added): Add documentation and
- rework the sample configuration file.
-
-2007-01-12 05:02 +0000 [r279] Dimi Paun <di...@la...>
-
- * safekeep/trunk/.project: Fix project name
-
-2007-01-04 00:36 +0000 [r276] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README: Test checkin 2
-
-2007-01-04 00:31 +0000 [r275] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README: Test checkin 1
-
-2007-01-03 14:36 +0000 [r274] Stelian Pop <st...@la...>
-
- * safekeep/trunk/Makefile: Update packaging/versionning to SVN
- instead of CVS.
-
-2007-01-03 14:18 +0000 [r273] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep.spec.in: No need for python_sitelib for
- SafeKeep.
-
-2007-01-03 06:46 +0000 [r272] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README: Fix protocol docs
-
-2007-01-03 00:32 +0000 [r271] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: Misc typo fixes. Use python provided
- os.getlogin() and os.uname()[1] instead of looking at possibly
- inexistent environment variables.
-
-2007-01-03 00:30 +0000 [r270] Stelian Pop <st...@la...>
-
- * safekeep/trunk/sample.cfg: Fix retention parameter and XML syntax
-
-2007-01-02 23:39 +0000 [r269] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: Fix --status argument parsing and
- reorganize the option list.
-
-2007-01-02 23:18 +0000 [r268] Stelian Pop <st...@la...>
-
- * safekeep/trunk/safekeep: Whitespace cleanup.
-
-2007-01-02 23:11 +0000 [r267] Stelian Pop <st...@la...>
-
- * safekeep/trunk/debian/docs (added), safekeep/trunk/debian/rules,
- safekeep/trunk/Makefile, safekeep/trunk/safekeep.spec.in (added),
- safekeep/trunk/debian/dirs: Packaging (rpm and deb) enhancements:
- - first version of safekeep.spec.in - install documentations
- (AUTHORS, README, LICENSE, etc) - use $(name) in Makefile instead
- of safekeep when possible
-
-2006-12-27 21:21 +0000 [r266] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/rules, safekeep/trunk/Makefile,
- safekeep/trunk/README, safekeep/trunk/debian/changelog.in,
- safekeep/trunk/sample.cfg, safekeep/trunk/safekeep-test,
- safekeep/trunk/LICENSE, safekeep/trunk/debian/control,
- safekeep/trunk/safekeep, safekeep/trunk/AUTHORS: Rename LaBackup
- to SafeKeep, using the following rules: - in natural language, it
- is spelled SafeKeep - the binary, package, dirs, etc. are all
- lower case: safekeep This follows the pattern used by
- SpamAssassin. Please note that the files have been manipulated in
- the CVS repo to maintain the history. The new CVS module is
- called 'SafeKeep', the old 'LaBackup' module still exists in CVS
- as read-only.
-
-2006-12-27 20:50 +0000 [r265] Dimi Paun <di...@la...>
-
- * safekeep/trunk/LICENSE (added), safekeep/trunk/AUTHORS (added),
- safekeep/trunk/COPYING (added): Add OSS structure
-
-2006-12-27 20:39 +0000 [r264] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README, safekeep/trunk/safekeep: Add protocol
- versioning.
-
-2006-12-24 17:04 +0000 [r263] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Pass the default id to the client as
- well.
-
-2006-12-20 03:55 +0000 [r262] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Make use of our wrapper spawn()
- function.
-
-2006-12-20 03:46 +0000 [r261] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Replace the '+' in the snapshot version
- with '.', the '+' is too unusual. Report the date in UTC to avoid
- the need for a timezone. Don't separate time from date to create
- one nr for the snapshot id.
-
-2006-12-20 03:40 +0000 [r260] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Get rid of extranous white space at end
- of line
-
-2006-12-20 03:36 +0000 [r259] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Capture stdout and stderr of child
- processes and redirect it to the logs
-
-2006-12-19 05:50 +0000 [r258] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Exclude /etc/mtab and /etc/lvm
- during backup, they change during snapshotting
-
-2006-12-19 05:36 +0000 [r257] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add ability to pass extra args to
- LaBackup, such as -vv flags for debugging
-
-2006-12-19 05:30 +0000 [r256] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add parameter to control nr of test
- iterations
-
-2006-12-19 05:29 +0000 [r255] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Fix typo
-
-2006-12-19 01:34 +0000 [r254] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Rerooting the paths on the rbind root
- requires special attention
-
-2006-12-19 01:27 +0000 [r253] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix snapshot syntax and enable
- snapshots during testing.
-
-2006-12-14 04:49 +0000 [r252] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix typo
-
-2006-12-14 04:45 +0000 [r251] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Always reset the known_hosts file
-
-2006-12-14 04:32 +0000 [r250] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Always reset the host file
-
-2006-12-14 04:21 +0000 [r249] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Be a bit more explicit
-
-2006-12-14 04:19 +0000 [r248] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix typo
-
-2006-12-14 04:07 +0000 [r247] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix typo
-
-2006-12-14 04:05 +0000 [r246] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add support for deploying to
- multiple distros
-
-2006-12-14 04:03 +0000 [r245] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add automatic distribution
- detection
-
-2006-12-14 03:49 +0000 [r244] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Use a more distinctive name for the
- devel repo
-
-2006-12-14 03:26 +0000 [r243] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Bunch of little fixes
-
-2006-12-14 02:57 +0000 [r242] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: If the client is remote (that is, we
- have a host), we must have a username and an identity file, so
- reflect that in the code by removing all the code testing for
- their existance.
-
-2006-12-14 02:46 +0000 [r241] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Use the default user too
-
-2006-12-14 02:45 +0000 [r240] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Use the default key for ctrl to
- test that portion of the code
-
-2006-12-14 02:42 +0000 [r239] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Always perform the LVM check for
- now
-
-2006-12-14 02:42 +0000 [r238] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Check for removed --rbinds
-
-2006-12-14 02:40 +0000 [r237] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Mark the rbind dir so we can later find
- it easily
-
-2006-12-14 02:32 +0000 [r236] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add conditional snapshotting
-
-2006-12-14 02:23 +0000 [r235] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Mark TODOs clearly
-
-2006-12-14 02:21 +0000 [r234] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README: More instructions.
-
-2006-12-14 02:21 +0000 [r233] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Ensure RDBMSes are installed and
- running
-
-2006-12-13 04:43 +0000 [r232] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Ignore clients that don't have proper
- keys
-
-2006-12-13 04:39 +0000 [r231] Dimi Paun <di...@la...>
-
- * safekeep/trunk/README (added): Add a small README with info about
- the full test
-
-2006-12-13 04:37 +0000 [r230] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add client automatically to the
- server's /etc/hosts
-
-2006-12-13 04:08 +0000 [r229] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Move fingerprint setup in the
- server section
-
-2006-12-13 04:00 +0000 [r228] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Automatically deploy client's
- fingerprint to the server so we avoid any kind of interactivity
- during key management.
-
-2006-12-13 03:24 +0000 [r227] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add support for local commands to
- all helper functions. Take over client before we take over the
- server.
-
-2006-12-12 05:21 +0000 [r226] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Rename testfull to fulltest, it's easier
- on the tongue.
-
-2006-12-12 05:20 +0000 [r225] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/rules: Rename /etc/LaBackup to
- /etc/LaBackup.d
-
-2006-12-12 05:16 +0000 [r224] Dimi Paun <di...@la...>
-
- * safekeep/trunk/debian/rules, safekeep/trunk/Makefile,
- safekeep/trunk/debian/changelog.in, safekeep/trunk/sample.cfg,
- safekeep/trunk/safekeep-test, safekeep/trunk/debian/control,
- safekeep/trunk/safekeep: Standardize capitalization to
- 'LaBackup'. Rename /etc/labackuip --> /etc/LaBackup.d
-
-2006-12-12 04:49 +0000 [r223] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Backup /srv instead of /var, there
- we have too many files changing. Exclude a few problematic files
- from the backup. Small misc fixes.
-
-2006-12-11 19:05 +0000 [r222] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Make the MD5 sums gathered on
- client and server as simialar as possible in terms of the
- filenames
-
-2006-12-11 04:21 +0000 [r221] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Prepare the server to receive the
- data; better tracing
-
-2006-12-11 03:55 +0000 [r220] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix copy&paste bug
-
-2006-12-11 03:46 +0000 [r219] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Install/upgrade appropriately. Also
- make sure to blow the cache away to we get the latest
-
-2006-12-11 03:35 +0000 [r218] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: We renamed the key-{ctrl,data} to
- key_{ctrl,data}
-
-2006-12-11 03:33 +0000 [r217] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Do not attempt to cleanup non-existant
- dir
-
-2006-12-11 03:31 +0000 [r216] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Make package optional, and turn it
- off by default.
-
-2006-12-11 03:28 +0000 [r215] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Tiny fix
-
-2006-12-11 02:56 +0000 [r214] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Now we have LaBack in repo, install
- it
-
-2006-12-11 02:55 +0000 [r213] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Build, sign and deploy the .rpm
-
-2006-12-11 01:45 +0000 [r212] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Deploty the server's ID to the
- cliend a bit smarter, so we don't keep on adding it ad-infinitum.
-
-2006-12-11 01:40 +0000 [r211] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Getting rid of the .ssh dir is not
- a good idea as we lose access to the box
-
-2006-12-11 01:38 +0000 [r210] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add the key blindly to make sure we
- have it, and we are asked the passwd only once.
-
-2006-12-11 01:32 +0000 [r209] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix typo
-
-2006-12-11 01:31 +0000 [r208] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Use the new func to reimplement
- writefile()
-
-2006-12-11 01:29 +0000 [r207] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add function that supports feeding
- input to the remote command
-
-2006-12-11 01:28 +0000 [r206] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Generate a server id file, and
- install it on client. Then install the control and data keys via
- key management functionality.
-
-2006-12-10 19:48 +0000 [r205] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Nicer key naming for test server
-
-2006-12-10 19:05 +0000 [r204] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Introduce a --status action for the
- --keys mode, and made it default. It displays the key status
- (e.g. what will happen on --deploy) for each of the named
- clients. Fix a few bugs left over in the key management code.
-
-2006-12-10 08:00 +0000 [r203] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Remove debug statement
-
-2006-12-10 07:56 +0000 [r202] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Remember the original line and feed that
- to the client
-
-2006-12-10 07:54 +0000 [r201] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Render the keys back to text form
-
-2006-12-10 07:51 +0000 [r200] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Actually returned the parsed keys
-
-2006-12-10 07:50 +0000 [r199] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Implement parse_authorized_keys()
- function. Disable agent forwarding for the commands we are
- running on clients.
-
-2006-12-10 00:36 +0000 [r198] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Never return non-zero exit code
-
-2006-12-09 22:07 +0000 [r197] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Better key comment
-
-2006-12-09 22:04 +0000 [r196] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Automatically generate keys if they
- don't exist. Rename some variables for clarity.
-
-2006-12-09 21:36 +0000 [r195] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: On the server side, tracing information
- should go to the stderr.
-
-2006-12-09 21:35 +0000 [r194] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Better tracing
-
-2006-12-09 21:31 +0000 [r193] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Better error reporting
-
-2006-12-09 21:28 +0000 [r192] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Get rid of the --clientid option, pass
- the ids, if any, as arguments. Handle all clients if no id was
- specified on the command line.
-
-2006-12-09 06:29 +0000 [r191] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Smartly deploy keys to the client (in an
- idempotentic manner)
-
-2006-12-09 06:01 +0000 [r190] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: No need to restrict by host, it
- overcomplicates things
-
-2006-12-09 05:59 +0000 [r189] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Output all key lines at once
-
-2006-12-09 05:56 +0000 [r188] Dimi Paun <di...@la...>
-
- * safekeep/trunk/sample.cfg, safekeep/trunk/safekeep-test,
- safekeep/trunk/safekeep: Rename key/key2 to key_ctrl/key_data
- respectively
-
-2006-12-09 05:48 +0000 [r187] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Provide default values for key and key2
-
-2006-12-08 05:34 +0000 [r186] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Replace ssh-copy-id with our own
- (better) implementation. Fix a nasty copy & paste bug, better
- tracing.
-
-2006-12-08 04:58 +0000 [r185] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Better trace
-
-2006-12-08 04:56 +0000 [r184] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix copy & paste error
-
-2006-12-08 04:54 +0000 [r183] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Factor out capturing of output from
- remote host
-
-2006-12-08 04:49 +0000 [r182] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: More verbosity, add missing mode
-
-2006-12-08 04:41 +0000 [r181] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add readfile() abstraction (able to
- read content from remote hosts as well), and make use of it
-
-2006-12-08 04:33 +0000 [r180] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Install the key in backup-op's home
- dir, not in root's dir. Lighter quoting, we don't need to be so
- strict.
-
-2006-12-08 04:27 +0000 [r179] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Do not attempt to get LaBackup via
- yum for now, it's not available just yet
-
-2006-12-07 22:32 +0000 [r178] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix typo
-
-2006-12-07 22:31 +0000 [r177] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Take over the client & server
- unconditionally, so we have less chances of breakaage in the test
-
-2006-12-07 20:28 +0000 [r176] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Quote remote commands properly
-
-2006-12-07 20:14 +0000 [r175] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix the command generation now that
- we abstracted away mkssh()
-
-2006-12-07 16:51 +0000 [r174] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix typo, and declare
- ssh_id_file_keys as global
-
-2006-12-07 16:47 +0000 [r173] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Add ability to invoke test via the
- Makefile
-
-2006-12-07 16:46 +0000 [r172] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Avoid errors on non-existant
- environment variables
-
-2006-12-07 16:37 +0000 [r171] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Provide decent company wide
- defaults for LaBackup test boxes
-
-2006-12-07 16:35 +0000 [r170] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Read the client/server address from
- the environment if available
-
-2006-12-07 16:27 +0000 [r169] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Separate rcmd from rpipe for
- clarity. Allow them to return the exit status if no description
- is passed it
-
-2006-12-07 16:21 +0000 [r168] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add comment on what we need to do
- to get rid of ssh-copy-id
-
-2006-12-07 15:26 +0000 [r167] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Try to guess SSH id files/keys
- automatically
-
-2006-12-07 14:26 +0000 [r166] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Allow ability to specify identity
- file
-
-2006-12-07 14:19 +0000 [r165] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix a bunch of obvious bugs
-
-2006-12-05 05:16 +0000 [r164] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Remove extraneous line
-
-2006-12-05 05:15 +0000 [r163] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Allow for specifying the address of
- the client and server in the remote test
-
-2006-12-05 05:11 +0000 [r162] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: For now, run the full test only for
- 2 interations
-
-2006-12-05 05:10 +0000 [r161] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Remove stale arg
-
-2006-12-05 04:58 +0000 [r160] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Create the base .cfg file for the
- full test. Small cleanups and reorgs.
-
-2006-12-05 04:42 +0000 [r159] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test, safekeep/trunk/safekeep: Implement
- the --print flag for the --keys mode.
-
-2006-12-05 04:39 +0000 [r158] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Install the keys on the client.
-
-2006-12-05 04:31 +0000 [r157] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Merge the lbc-copy-id script into
- LaBackup.
-
-2006-12-05 04:27 +0000 [r156] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Better id
-
-2006-12-05 04:26 +0000 [r155] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Merge key management into LaBackup
-
-2006-12-05 03:49 +0000 [r154] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Refactor the parsing code to a separate
- function
-
-2006-12-05 02:23 +0000 [r153] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Fix typo
-
-2006-12-05 02:23 +0000 [r152] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Reorg help output, add more checks
-
-2006-12-05 02:03 +0000 [r151] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix glob pattern
-
-2006-12-05 01:36 +0000 [r150] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Fix typo
-
-2006-12-04 06:09 +0000 [r149] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Compute the MD5 sums of all files
- that were backed up
-
-2006-12-04 06:08 +0000 [r148] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Implement big chunk of remote test
-
-2006-12-04 05:57 +0000 [r147] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add ability to pipe from one remote
- machine to another
-
-2006-12-04 05:39 +0000 [r146] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Create files on client
-
-2006-12-04 05:35 +0000 [r145] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add support for creating file on a
- remote machine as well
-
-2006-12-03 21:38 +0000 [r144] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Add start for test-remote, plus
- document remaining steps to accomplish
-
-2006-12-03 19:21 +0000 [r143] Mihai Popa <mi...@la...>
-
- * safekeep/trunk/safekeep-test: fix comments
-
-2006-12-03 18:26 +0000 [r142] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Just do 2 iterations for the local
- test, we don't need more
-
-2006-12-03 18:25 +0000 [r141] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Make the database name optional, and
- dump all databases if it's not specified.
-
-2006-12-03 18:05 +0000 [r140] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: We are ready for a 0.1.0 release
-
-2006-12-03 17:48 +0000 [r139] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Add support for controlling the
- verbosity level both on client and server
-
-2006-12-03 17:17 +0000 [r138] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Invert the meaning of the client/server
- flag
-
-2006-12-03 17:11 +0000 [r137] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Move function in more appropriate place
-
-2006-12-03 17:10 +0000 [r136] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Log the data in the correct format
- directly on the client side
-
-2006-12-03 17:03 +0000 [r135] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Get rid of trailing whitespace in lines
- we read from a file
-
-2006-12-03 17:02 +0000 [r134] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Lighter output
-
-2006-12-03 17:02 +0000 [r133] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Turn the logbuf into a list for
- performance reasons
-
-2006-12-03 17:00 +0000 [r132] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Wait a bit between tests,
- rdiff-backup can't run within the same second
-
-2006-12-03 16:47 +0000 [r131] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Don't bother setting the remote schema
- if we don't have a host
-
-2006-12-03 16:43 +0000 [r130] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile: Add help info for test
-
-2006-12-03 16:42 +0000 [r129] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Don't recreate things unnecessarily
- in between tests
-
-2006-12-03 15:41 +0000 [r128] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep-test: Correctly compute the MD5 sums
-
-2006-12-03 15:36 +0000 [r127] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Do not assume the rdiff-backup-data dir
- always exists
-
-2006-12-03 15:33 +0000 [r126] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Do not default host and user to
- localhost and root, simply run the backup in local mode if not
- present. Debug and logging enhancements.
-
-2006-12-03 05:41 +0000 [r125] Dimi Paun <di...@la...>
-
- * safekeep/trunk/Makefile, safekeep/trunk/safekeep-test (added):
- Add testing harness
-
-2006-12-02 23:15 +0000 [r124] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Small syntax fix
-
-2006-12-02 20:28 +0000 [r123] Eduard Malinschi <ed...@la...>
-
- * safekeep/trunk/sample.cfg: update comments
-
-2006-12-02 00:39 +0000 [r122] Dimi Paun <di...@la...>
-
- * safekeep/trunk/sample.cfg: Fix sample.cfg
-
-2006-11-30 06:07 +0000 [r121] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Properly quote command passed to 'su -c'
-
-2006-11-30 06:01 +0000 [r120] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Whitespace fix
-
-2006-11-30 06:00 +0000 [r119] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Don't bother with fancy error handling
- on server, client knows to cleanup after itself in case it loses
- connection with the server.
-
-2006-11-30 05:58 +0000 [r118] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Move rdiff-backup logs handling closer
- to where it's needed
-
-2006-11-30 05:56 +0000 [r117] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Remove the BDIR protocol command, do
- everything in SETUP. This way we can atomically create and test
- if we can --rbind the bdir. Move sending of reposes from client
- to server in the main client loop. Allow for bdir to simply be
- '/' if we don't need a temporary root. Create a temporarry root
- in bdir only if we have snapshots. Fix a bunch more of path and
- string manipulations.
-
-2006-11-30 04:41 +0000 [r116] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Rename the '<dir>' element to '<repo>'
- for clarity. Add a 'retention' attribute to '<repo>' that
- controls the amount of time data will be retained in the repo.
-
-2006-11-30 04:27 +0000 [r115] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: More path handling cleanups
-
-2006-11-30 03:49 +0000 [r114] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Dump the backup.log and statistics file.
-
-2006-11-30 03:33 +0000 [r113] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: We now separate server/client output by
- case
-
-2006-11-30 03:31 +0000 [r112] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Add support function to dump content of
- file to logs
-
-2006-11-30 03:26 +0000 [r111] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Move send_notification to a more
- appropriate portion of the file
-
-2006-11-30 03:25 +0000 [r110] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Tiny clarification.
-
-2006-11-30 03:24 +0000 [r109] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Support multiple email addresses. Small
- fixes for the help output.
-
-2006-11-29 21:59 +0000 [r108] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Factor out the logging of data into one
- function called log(). Rename the log buffer to logbuf. Better
- display of messages from client.
-
-2006-11-29 21:46 +0000 [r107] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: ERROR is a reserved word
-
-2006-11-29 19:05 +0000 [r106] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Follow the smtplib convention for
- missing SMTP host
-
-2006-11-29 18:32 +0000 [r105] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: A bit more clear message
-
-2006-11-29 18:31 +0000 [r104] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Factor out email notifications from
- server business. Handle all exceptions at the higher level.
-
-2006-11-29 16:40 +0000 [r103] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Small cleanup
-
-2006-11-29 04:42 +0000 [r102] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Encode the instance information in the
- snapshot name
-
-2006-11-29 04:39 +0000 [r101] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Add missing param
-
-2006-11-29 04:38 +0000 [r100] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Refactor snapshot info handling in one
- function. Use the long option names where possible for clarity.
- Small cleanups.
-
-2006-11-29 04:15 +0000 [r99] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Factor out process spawning.
-
-2006-11-29 02:53 +0000 [r98] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: More standard handling of paths, and a
- few little cleanups.
-
-2006-11-28 05:56 +0000 [r97] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Fix error in cleanup logic, rename
- variable for readability.
-
-2006-11-28 05:50 +0000 [r96] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: We don't snapshot without a bdir
-
-2006-11-28 05:48 +0000 [r95] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Better error handling and dealing with
- no bind-dir in client cleanup.
-
-2006-11-28 05:37 +0000 [r94] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Abstract the sending of the data a bit
-
-2006-11-28 05:30 +0000 [r93] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Bit cleaner error reporting
-
-2006-11-28 01:18 +0000 [r92] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: This is a config file problem
-
-2006-11-28 01:16 +0000 [r91] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Make the --rbind optional, just skip the
- snapshots if we don't have it
-
-2006-11-28 01:05 +0000 [r90] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: We no longer crap out of DB dump
-
-2006-11-28 01:01 +0000 [r89] Dimi Paun <di...@la...>
-
- * safekeep/trunk/safekeep: Cleanup error handling and logging for
- snapshot setup and teardown.
-
-2006-11-19 21:52 +0000 [r88] Stelian Pop <st...@la...>
-
- * safekeep/trunk/debian/changelog.in: gpg does a full string search
- on the email.
-
-2006-11-19 21:49 +0000 [r87] Stelian Pop <st...@la...>
-
- * safekeep/trunk/debia...
[truncated message content] |
|
From: <di...@us...> - 2007-05-16 14:09:32
|
Revision: 499
http://safekeep.svn.sourceforge.net/safekeep/?rev=499&view=rev
Author: dimi
Date: 2007-05-16 07:09:30 -0700 (Wed, 16 May 2007)
Log Message:
-----------
Update ChangeLog
Modified Paths:
--------------
safekeep/trunk/ChangeLog
Modified: safekeep/trunk/ChangeLog
===================================================================
--- safekeep/trunk/ChangeLog 2007-05-16 14:09:01 UTC (rev 498)
+++ safekeep/trunk/ChangeLog 2007-05-16 14:09:30 UTC (rev 499)
@@ -1,3 +1,30 @@
+2007-05-16 14:09 +0000 [r498] Dimi Paun <di...@la...>
+
+ * safekeep/trunk/safekeep: Now we're 1.0
+
+2007-05-16 14:07 +0000 [r497] Dimi Paun <di...@la...>
+
+ * safekeep/trunk/safekeep.spec.in: Update .spec changelog
+
+2007-05-16 14:06 +0000 [r496] Dimi Paun <di...@la...>
+
+ * safekeep/trunk/ANNOUNCE: Prepare the 1.0 release
+
+2007-05-16 13:55 +0000 [r495] Dimi Paun <di...@la...>
+
+ * safekeep/trunk/doc/safekeep.backup.txt: Add warning about sharing
+ repository paths, hopefully this will help people avoid some
+ nasty situations.
+
+2007-05-16 13:48 +0000 [r494] Dimi Paun <di...@la...>
+
+ * safekeep/trunk/doc/safekeep.backup.txt: Fix reference to .backup
+ files
+
+2007-04-27 05:05 +0000 [r490] Dimi Paun <di...@la...>
+
+ * safekeep/trunk/ChangeLog: Update ChangeLog
+
2007-04-27 05:05 +0000 [r489] Dimi Paun <di...@la...>
* safekeep/trunk/safekeep: Release 0.9.3 is almost ready...
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|