From: Joe Z. <jz...@us...> - 2004-04-18 23:26:08
|
Update of /cvsroot/bobs/bobs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31726/bobs Modified Files: INSTALL NEWS RELEASE-NOTES VERSION bobs.spec configure configure.in Log Message: Release 0.6.2 Index: INSTALL =================================================================== RCS file: /cvsroot/bobs/bobs/INSTALL,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- INSTALL 12 Apr 2004 01:59:50 -0000 1.25 +++ INSTALL 18 Apr 2004 23:25:36 -0000 1.26 @@ -19,7 +19,9 @@ ::: 1.0 Requirements You'll need at least the following programs installed. -(Developed on a stock redhat 7.2 install) +(Developed on a stock redhat 7.2 install. +Works on redhat through version 9 and Fedora Core 1. +Should work on other linux systems too.) Bash sh sed @@ -40,14 +42,16 @@ RELEASE-NOTES. You can install from the rpm package if you do not want to change the -default locations of the installed files. Use the tar distribution if -you want to place the web directory or backup data directory in a -non-default location or if you have trouble after installing from rpm. +default locations of the installed files. Use the tar distribution if you +want to change the install options such as placing the web directory or +backup data directory in a non-default location, or if you have trouble +after installing from the rpm. ::: 2.1 rpm install To install from the rpm package: + (you must be root) rpm -Uvh bobs-x.x.x-x.i386.rpm ::: 2.2 Installation from tarball @@ -103,11 +107,6 @@ The default data directory is /var/bobsdata. - FIXME: - ./configure will also store a plain text password in - inc/config.php. This password will control access to the - bobs/admin.php web page. - 3. Install bobs Change to root: @@ -119,7 +118,7 @@ make install This will install the web pages, create the backup data - directories, and add a cron job to /etc/crontab. + directories, and add a cron job /etc/cron.daily/backup.php. 4. Bobs is now installed. @@ -138,7 +137,7 @@ 6. If you want to uninstall bobs, or change your configuration: Run 'make uninstall' from the directory where you extracted - the bobs files to remove the bobs web pages and delete the + the bobs files to remove the bobs web pages and delete any empty backup data directories. You can then run ./configure and 'make install' again. @@ -230,7 +229,7 @@ ::: 4.0 Configuration -Note: This section is obsoleted by section "7.0 Easy install", but it +Note: This section is obsoleted by section "2.0 Installation", but it has some useful detailed information. Edit the file "inc/config.php" to suit your needs. The dirs you define @@ -286,7 +285,7 @@ ::: 5.0 Test your setups -Note: This section is also obsoleted by section "7.0 Easy install", +Note: This section is also obsoleted by section "2.0 Installation", but it has some useful detailed information. mount the nfs shares, try to write a file. @@ -315,6 +314,9 @@ ::: 6.0 Off you go +Note: This section is also obsoleted by section "2.0 Installation", +but it has some useful detailed information. + Copy the cron/backup.php script into /etc/cron.daily/ to make a backup every night (depending on your settings ofcourse) @@ -324,7 +326,6 @@ if you add the entry to the crontab after starting "cmdloop" manually you'll be covered in case your dies. - You might want to delete the files in session/ sometimes. This is not done automatically yet (but will be at some point). Index: NEWS =================================================================== RCS file: /cvsroot/bobs/bobs/NEWS,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- NEWS 7 Feb 2004 23:22:30 -0000 1.4 +++ NEWS 18 Apr 2004 23:25:36 -0000 1.5 @@ -25,3 +25,6 @@ 02-07-2004 Released version 0.6.1. + + April 2004 + Release version 0.6.2. Index: RELEASE-NOTES =================================================================== RCS file: /cvsroot/bobs/bobs/RELEASE-NOTES,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- RELEASE-NOTES 12 Apr 2004 02:15:49 -0000 1.4 +++ RELEASE-NOTES 18 Apr 2004 23:25:36 -0000 1.5 @@ -43,15 +43,30 @@ Both db3 and db4 are now supported at runtime. Older versions of php use db3, newer versions use db4. Bobs will work with either version. - +--- cmdloop is now started from /etc/init.d/cmdloopd. It should start automatically. To start it manually, become root and type '/etc/init.d/cmdloopd start'. To stop it manually, become root and type '/etc/init.d/cmdloopd stop'. - +--- Output from cmdloop is now written to a log, usually /var/log/bobs.log. This log is not rotated automatically so you may want to delete it, rotate it manually, or setup automatic log rotation. To setup log rotation see -'man logrotate'. +'man logrotate'. +Here is a sample bobs log rotation configuration. Just past this into a +new file /etc/logrotate.d/bobs: + + /var/log/bobs.log { + nocompress + missingok + prerotate + /etc/init.d/cmdloopd stop + endscript + postrotate + sleep 6 + /etc/init.d/cmdloopd start + endscript + } +--- Fixed an "off by one" error in getting file sizes. Reported by Hank Hampel. Index: VERSION =================================================================== RCS file: /cvsroot/bobs/bobs/VERSION,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- VERSION 7 Feb 2004 23:22:30 -0000 1.4 +++ VERSION 18 Apr 2004 23:25:37 -0000 1.5 @@ -1 +1 @@ -Version 0.6.1 +Version 0.6.2 Index: bobs.spec =================================================================== RCS file: /cvsroot/bobs/bobs/bobs.spec,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- bobs.spec 28 Mar 2004 22:33:21 -0000 1.7 +++ bobs.spec 18 Apr 2004 23:25:37 -0000 1.8 @@ -1,6 +1,6 @@ Summary: Browseable Online Backup System (BOBS). Name: bobs -Version: 0.6.1 +Version: 0.6.2 Release: 1 License: GPL Group: Applications/Archiving @@ -58,6 +58,8 @@ /var/bobsdata %changelog +* Tue Apr 13 2004 Joe Zacky <jz...@us...> +- Prepare to release version 0.6.2. * Sun Mar 28 2004 Joe Zacky <jz...@us...> - Remove check_loop from crontab and use /etc/init.d/cmdloopd. * Sat Feb 7 2004 Jochen Metzger <jme...@us...> Index: configure =================================================================== RCS file: /cvsroot/bobs/bobs/configure,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- configure 28 Mar 2004 22:33:21 -0000 1.14 +++ configure 18 Apr 2004 23:25:37 -0000 1.15 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.57 for bobs 0.6.1. +# Generated by GNU Autoconf 2.57 for bobs 0.6.2. # # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. @@ -266,8 +266,8 @@ # Identity of this package. PACKAGE_NAME='bobs' PACKAGE_TARNAME='bobs' -PACKAGE_VERSION='0.6.1' -PACKAGE_STRING='bobs 0.6.1' +PACKAGE_VERSION='0.6.2' +PACKAGE_STRING='bobs 0.6.2' PACKAGE_BUGREPORT='' ac_unique_file="admin.php" @@ -721,7 +721,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures bobs 0.6.1 to adapt to many kinds of systems. +\`configure' configures bobs 0.6.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -783,7 +783,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of bobs 0.6.1:";; + short | recursive ) echo "Configuration of bobs 0.6.2:";; esac cat <<\_ACEOF @@ -856,7 +856,7 @@ test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -bobs configure 0.6.1 +bobs configure 0.6.2 generated by GNU Autoconf 2.57 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 @@ -871,7 +871,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by bobs $as_me 0.6.1, which was +It was created by bobs $as_me 0.6.2, which was generated by GNU Autoconf 2.57. Invocation command line was $ $0 $@ @@ -1462,7 +1462,7 @@ # Define the identity of the package. PACKAGE=bobs - VERSION=0.6.1 + VERSION=0.6.2 cat >>confdefs.h <<_ACEOF @@ -2175,7 +2175,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by bobs $as_me 0.6.1, which was +This file was extended by bobs $as_me 0.6.2, which was generated by GNU Autoconf 2.57. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -2230,7 +2230,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -bobs config.status 0.6.1 +bobs config.status 0.6.2 configured by $0, generated by GNU Autoconf 2.57, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" Index: configure.in =================================================================== RCS file: /cvsroot/bobs/bobs/configure.in,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- configure.in 28 Mar 2004 22:33:21 -0000 1.16 +++ configure.in 18 Apr 2004 23:25:37 -0000 1.17 @@ -15,13 +15,13 @@ dnl> a service. PACKAGE=bobs -VERSION=0.6.1 +VERSION=0.6.2 dnl> dnl> Verify we're in the right directory by looking for a unique file. dnl> -AC_INIT(bobs, 0.6.1) +AC_INIT(bobs, 0.6.2) AC_CONFIG_SRCDIR(admin.php) AM_INIT_AUTOMAKE |