Added and cleaned up some documentation
This commit is contained in:
parent
fa5554bd82
commit
0382078531
6 changed files with 18 additions and 5 deletions
|
@ -6,6 +6,7 @@ ccollect.sh, Nico Schottelius, 2005-12-07
|
|||
1. General configuration
|
||||
2. Source configuration
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
0. Runtime options
|
||||
|
||||
ccollect looks for its configuration in /etc/ccollect or, if set, in
|
||||
|
@ -16,6 +17,7 @@ There are also some self explaining parameters you can pass to ccollect, simply
|
|||
|
||||
The "intervall" is used to know how many backups to keep.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
1. General configuration
|
||||
|
||||
The general configuration can be found below $CCOLLECT_CONF/defaults or /etc/ccollect/defaults.
|
||||
|
@ -24,8 +26,11 @@ The general configuration can be found below $CCOLLECT_CONF/defaults or /etc/cco
|
|||
|
||||
Below this directory should be:
|
||||
|
||||
intervalls/<intervall
|
||||
intervalls/<intervall name>
|
||||
|
||||
The number in this file tells ccollect how many versions to keep.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
2. Source configuration
|
||||
|
||||
Each source configuration exists below $CCOLLECT_CONF/sources/$name.
|
||||
|
|
5
INSTALL
Normal file
5
INSTALL
Normal file
|
@ -0,0 +1,5 @@
|
|||
--------------------------------------------------------------------------------
|
||||
ccollect.sh, Nico Schottelius, 2005-12-08
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Simply copy it to a directory in your $PATH.
|
|
@ -3,10 +3,10 @@ ccollect.sh, Nico Schottelius, 2005-12-06 (updated: 2005-12-07)
|
|||
Requirements
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
You need at least:
|
||||
ccollect needs the following packages:
|
||||
|
||||
- rsync
|
||||
- cp with support for hard links
|
||||
- ssh if you want to use rsync over ssh
|
||||
- a bourne shell (/bin/sh) compatible shell
|
||||
- bc
|
||||
- cp with support for hard links (cp -al is used)
|
||||
- rsync
|
||||
- ssh if you want to use rsync over ssh
|
||||
|
|
1
TODO
1
TODO
|
@ -1,4 +1,5 @@
|
|||
- write a manpage
|
||||
- write a simple manual
|
||||
- implement verbosity
|
||||
o general, very verbose (set -x)
|
||||
- implement general log
|
||||
|
|
1
conf/defaults/intervalls/monthly
Normal file
1
conf/defaults/intervalls/monthly
Normal file
|
@ -0,0 +1 @@
|
|||
12
|
1
conf/defaults/intervalls/weekly
Normal file
1
conf/defaults/intervalls/weekly
Normal file
|
@ -0,0 +1 @@
|
|||
4
|
Loading…
Reference in a new issue