diff --git a/doc/CHANGES b/doc/CHANGES index 8d90ef4..1f1a23e 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,7 @@ +0.4.1 to 0.4.2: + * fixed bug when $CCOLLECT_CONF is relative + * added Quickstart to documentation + 0.4 to 0.4.1: * updated documentation, fixed some English related problems * added Texinfo documentation diff --git a/doc/ccollect.text b/doc/ccollect.text index aa3b7cd..4313669 100644 --- a/doc/ccollect.text +++ b/doc/ccollect.text @@ -77,12 +77,13 @@ For those who do not want to read the whole long document: -------------------------------------------------------------------------------- # get latest ccollect tarball from http://unix.schottelius.org/ccollect/ -# replace 0.4.1 with the current version -wget http://unix.schottelius.org/ccollect/ccollect-0.4.1.tar.bz2 +# replace 0.4.2 with the current version +export CCV=0.4.2 +wget http://unix.schottelius.org/ccollect/ccollect-${CCV}.tar.bz2 # extract the tarball, change to the newly created directory -tar -xvjf ccollect-0.4.1.tar.bz2 -cd ccollect-0.4.1 +tar -xvjf ccollect-${CCV}.tar.bz2 +cd ccollect-${CCV} # create mini-configuration # first create directory structure @@ -104,10 +105,14 @@ ln -s ~/DASI miniconfig/sources/testsource/destination touch miniconfig/sources/testsource/verbose touch miniconfig/sources/testsource/summary -# do the backup +# do the backup, twice +CCOLLECT_CONF=./miniconfig ./ccollect.sh testinterval testsource CCOLLECT_CONF=./miniconfig ./ccollect.sh testinterval testsource -------------------------------------------------------------------------------- +By the way: Cut and paste of the complete section above into your +shell will result in downloading ccollect, creating a sample configuration +and doing the backup two times. Requirements ------------