Merge todos
Cleanup 0.5.2 for release
This commit is contained in:
parent
d95861c81c
commit
cd21d9c072
4 changed files with 22 additions and 27 deletions
24
TODO
24
TODO
|
@ -1,28 +1,4 @@
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
1. export more variables for scripts
|
|
||||||
or check when they are automatically exported
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
1.1.
|
|
||||||
Anhaengen von der -F / --filter Doku von Killerfox
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
1.2. replace sed?
|
|
||||||
compare timing:
|
|
||||||
_echo () { echo "$name $msg" }
|
|
||||||
and create
|
|
||||||
_techo () { echo "$timestamp $name $msg" }
|
|
||||||
perhaps create
|
|
||||||
_eecho () { _techo "ERROR $msg" }
|
|
||||||
?
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
2. clonen von anderen existierenden backups?
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
3. detect unfinished backups
|
|
||||||
sven / markierung
|
|
||||||
- wie seht der Marker aus?
|
|
||||||
-> .ccollect-YEAR-MM-DD.HHmm.pid (like the directory)
|
|
||||||
--> assume incomplete, when we did not finish.
|
|
||||||
--> means it's complete,when rsync was successful
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
4. Add ccollect-restore.sh
|
4. Add ccollect-restore.sh
|
||||||
(new project, perhaps coordinated with jchome's ccollect-config)
|
(new project, perhaps coordinated with jchome's ccollect-config)
|
||||||
|
|
||||||
|
|
|
@ -428,7 +428,7 @@ while [ "$i" -lt "$no_sources" ]; do
|
||||||
destination_dir="$c_dest/${INTERVAL}.${destination_date}.$$"
|
destination_dir="$c_dest/${INTERVAL}.${destination_date}.$$"
|
||||||
|
|
||||||
#
|
#
|
||||||
# FIXME:
|
# FIXME: In 0.6 add search for the latest available backup!
|
||||||
#
|
#
|
||||||
last_dir=$(ls -d "$c_dest/${INTERVAL}."?* 2>/dev/null | sort -n | tail -n 1)
|
last_dir=$(ls -d "$c_dest/${INTERVAL}."?* 2>/dev/null | sort -n | tail -n 1)
|
||||||
|
|
||||||
|
@ -444,9 +444,9 @@ while [ "$i" -lt "$no_sources" ]; do
|
||||||
abs_destination_dir="$(cd "$destination_dir" && pwd -P)"
|
abs_destination_dir="$(cd "$destination_dir" && pwd -P)"
|
||||||
|
|
||||||
#
|
#
|
||||||
# add mark
|
# FIXME: add mark in 0.6 (and remove if successful later!
|
||||||
#
|
#
|
||||||
touch "${abs_destination_dir}/${c_marker}"
|
#touch "${abs_destination_dir}/${c_marker}"
|
||||||
|
|
||||||
#
|
#
|
||||||
# the rsync part
|
# the rsync part
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
- check and export variables for use in scripts!
|
||||||
|
- documentation: -F / --filter for rsync
|
||||||
- join todos
|
- join todos
|
||||||
- fix possible quoting problems
|
- fix possible quoting problems
|
||||||
* rsync_extra (redefine format)
|
* rsync_extra (redefine format)
|
||||||
|
|
17
doc/todo/0.6
17
doc/todo/0.6
|
@ -4,6 +4,23 @@
|
||||||
ours
|
ours
|
||||||
* or add 'prefer_same_interval' instead?
|
* or add 'prefer_same_interval' instead?
|
||||||
- implement detection of partial backups
|
- implement detection of partial backups
|
||||||
|
3. detect unfinished backups
|
||||||
|
sven / markierung
|
||||||
|
- wie seht der Marker aus?
|
||||||
|
-> .ccollect-YEAR-MM-DD.HHmm.pid (like the directory)
|
||||||
|
--> assume incomplete, when we did not finish.
|
||||||
|
--> means it's complete,when rsync was successful
|
||||||
|
---> partial implemented in 0.5.2 (commented out)
|
||||||
- do not check by name, but by time
|
- do not check by name, but by time
|
||||||
* is ls -t posix?
|
* is ls -t posix?
|
||||||
* also check: -p -1
|
* also check: -p -1
|
||||||
|
- do sed-time check:
|
||||||
|
1.2. replace sed?
|
||||||
|
compare timing:
|
||||||
|
_echo () { echo "$name $msg" }
|
||||||
|
and create
|
||||||
|
_techo () { echo "$timestamp $name $msg" }
|
||||||
|
perhaps create
|
||||||
|
_eecho () { _techo "ERROR $msg" }
|
||||||
|
?
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue