New port: sysutils/backupuser
backupuser is a command line utility, which automates the creation of backups of a user's home directory. An accompanying utility lets a user verify the integrity of files on another storage device. Special backup options exist for the root user. WWW: http://www.olivermahmoudi.com/programming/backup-strategies PR: 224735 Submitted by: Oliver Mahmoudi <fbsd@olivermahmoudi.com>
This commit is contained in:
parent
a21e13d1f1
commit
b3ad0f7a25
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=491136
4 changed files with 37 additions and 0 deletions
|
@ -72,6 +72,7 @@
|
|||
SUBDIR += backuppc
|
||||
SUBDIR += backuppc-devel
|
||||
SUBDIR += backuppc4
|
||||
SUBDIR += backupuser
|
||||
SUBDIR += bacula-bat
|
||||
SUBDIR += bacula-client
|
||||
SUBDIR += bacula-client-static
|
||||
|
|
27
sysutils/backupuser/Makefile
Normal file
27
sysutils/backupuser/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= backupuser
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://www.olivermahmoudi.com/files/
|
||||
|
||||
MAINTAINER= fbsd@olivermahmoudi.com
|
||||
COMMENT= User Backup Utility
|
||||
|
||||
LICENSE= BSD2CLAUSE
|
||||
|
||||
NO_ARCH= yes
|
||||
NO_BUILD= yes
|
||||
PLIST_FILES= bin/backupuser \
|
||||
bin/bu_check_files \
|
||||
man/man1/backupuser.1.gz \
|
||||
man/man1/bu_check_files.1.gz
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} && ${INSTALL_SCRIPT} ${PORTNAME} bu_check_files \
|
||||
${STAGEDIR}${PREFIX}/bin
|
||||
cd ${WRKSRC} && ${INSTALL_MAN} ${PORTNAME}.1 bu_check_files.1 \
|
||||
${STAGEDIR}${PREFIX}/man/man1
|
||||
|
||||
.include <bsd.port.mk>
|
3
sysutils/backupuser/distinfo
Normal file
3
sysutils/backupuser/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1514653592
|
||||
SHA256 (backupuser-1.0.tar.gz) = f33fdc33fd5e98e5fd2fbc517bfeddd83e1851d9f4e0348827c69de98ee07f53
|
||||
SIZE (backupuser-1.0.tar.gz) = 5338
|
6
sysutils/backupuser/pkg-descr
Normal file
6
sysutils/backupuser/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
backupuser is a command line utility, which automates the creation
|
||||
of backups of a user's home directory. An accompanying utility
|
||||
lets a user verify the integrity of files on another storage device.
|
||||
Special backup options exist for the root user.
|
||||
|
||||
WWW: http://www.olivermahmoudi.com/programming/backup-strategies
|
Loading…
Reference in a new issue