mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
ee3f0fafd4
all of your files. It is useful both for producing incremental backups or for systemwide images or "snapshots". The script can be run either from the command line or, more typically, as a cron job to automate system backup tasks. The central benefit of using 'tbku' over hand written tar commands is that 'tbku' is "table driven". You specify the set of files to back up in a table (a separate file). You can have as many of these "filesets" as you wish, corresponding to different kinds of backups you want done. 'tbku' will do backups automatically or manually, based on the name of the "fileset". This considerably simplifies automating backups, keeping backup logs, and generally maintaining an orderly backup environment. 'tbku' can also be used to capture system images which can then later be used to (re)provision other machines. PR: ports/121916 Submitted by: Tim Daneliuk <tbku@tundraware.com>
29 lines
802 B
Makefile
29 lines
802 B
Makefile
# New ports collection makefile for: tbku
|
|
# Date Created: 19 March 2008
|
|
# Whom: tundra
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tbku
|
|
PORTVERSION= 1.115
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.tundraware.com/Software/tbku/
|
|
|
|
MAINTAINER= tbku@tundraware.com
|
|
COMMENT= A Tool For Incremental And Imaging Backups
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in WHATSNEW.txt tbku-license.txt tbku.html tbku.pdf tbku.ps tbku.txt \
|
|
Imaging-FreeBSD-With-tbku.txt Imaging-FreeBSD-With-tbku.html \
|
|
Imaging-FreeBSD-With-tbku.pdf Imaging-FreeBSD-With-tbku.ps \
|
|
Imaging-SUSE-Linux-With-tbku.txt Imaging-SUSE-Linux-With-tbku.html \
|
|
Imaging-SUSE-Linux-With-tbku.pdf Imaging-SUSE-Linux-With-tbku.ps
|
|
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|