system/bacula-client: Updated for version 5.0.2.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
mario 2010-06-16 06:25:31 -05:00 committed by Robby Workman
parent b505e602e9
commit 53952012d1
4 changed files with 35 additions and 39 deletions

View file

@ -1,13 +1,10 @@
Bacula (Manage backup, recovery) - Client only
Bacula is a set of computer programs that permit you (or the system
administrator) to manage backup, recovery, and verification of
computer data across a network of computers of different kinds. In
technical terms, it is a network Client/Server based backup program.
Bacula is relatively easy to use and efficient, while offering many
advanced storage management features that make it easy to find and
recover lost or damaged files. Due to its modular design, Bacula is
scalable from small single computer systems to systems consisting of
hundreds of computers located over a large network.
More info on website: http://www.bacula.org
Bacula is a set of computer programs that permit you (or the system admin) to
manage backup, recovery, and verification of computer data across a network
of computers of different kinds. In technical terms, it is a network
Client/Server based backup program. Bacula is relatively easy to use and
efficient, while offering many advanced storage management features that make
it easy to find and recover lost or damaged files. Due to its modular design,
Bacula is scalable from small single computer systems to systems consisting
of hundreds of computers located over a large network.

View file

@ -24,7 +24,7 @@
PRGNAM=bacula-client
SRCNAM=bacula
VERSION=${VERSION:-5.0.1}
VERSION=${VERSION:-5.0.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -93,28 +93,24 @@ make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
ABOUT-NLS ChangeLog COPYING INSTALL README ReleaseNotes VERIFYING \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
# Copy rc script
# Copy init script
install -D -m0755 -oroot -groot scripts/bacula $PKG/etc/rc.d/rc.bacula.new
# Append .new to config files
cd $PKG/etc/bacula || exit 1
for i in *.conf ; do mv $i $i.new ; done
for i in $PKG/etc/bacula/*.conf ; do mv $i $i.new ; done
# Remove useless tmp dir
rm -rf $PKG/tmp
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
ChangeLog COPYING INSTALL README ReleaseNotes VERIFYING \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
# Remove useless tmp dir
if [ -d $PKG/tmp ]; then
rm -rf $PKG/tmp
fi
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -1,10 +1,10 @@
PRGNAM="bacula-client"
VERSION="5.0.1"
VERSION="5.0.2"
HOMEPAGE="www.bacula.org"
DOWNLOAD="http://downloads.sourceforge.net/bacula/bacula-5.0.1.tar.gz"
MD5SUM="beb9f8da196b3c9ffb0356f087dbdb99"
DOWNLOAD="http://downloads.sourceforge.net/bacula/bacula-5.0.2.tar.gz"
MD5SUM="e9204d2e772f12662de28da3327853de"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="mario"
EMAIL="mario@slackverse.org"
APPROVED="dsomero"
APPROVED="rworkman"

View file

@ -11,14 +11,17 @@ config() {
# Otherwise, we leave the .new copy for the admin to consider...
}
# Keep same perms on rc.bacula.new:
if [ -e etc/rc.d/rc.bacula ]; then
cp -a etc/rc.d/rc.bacula etc/rc.d/rc.bacula.new.incoming
cat etc/rc.d/rc.bacula.new > etc/rc.d/rc.bacula.new.incoming
mv etc/rc.d/rc.bacula.new.incoming etc/rc.d/rc.bacula.new
fi
preserve_perms() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ -e $OLD ]; then
cp -a $OLD ${NEW}.incoming
cat $NEW > ${NEW}.incoming
mv ${NEW}.incoming $NEW
fi
config $NEW
}
preserve_perms etc/rc.d/rc.bacula.new
config etc/bacula/bacula-fd.conf.new
config etc/bacula/bconsole.conf.new
config etc/rc.d/rc.bacula.new