- Add new port sysutils/zfsnap:

zfSnap is very simple sh script to make periodic zfs snapshots with cron.
It will also delete old snapshots.

WWW: http://aldis.git.bsdroot.lv/zfSnap

PR:		ports/149188
Submitted by:	Aldis Berjoza <aldis at bsdroot.lv>
This commit is contained in:
Tim Bishop 2010-08-03 17:39:21 +00:00
parent c1684b8927
commit 94f9645795
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=258704
4 changed files with 35 additions and 0 deletions

View file

@ -973,6 +973,7 @@
SUBDIR += zfs-replicate
SUBDIR += zfs-snapshot-clean
SUBDIR += zfs-snapshot-mgmt
SUBDIR += zfsnap
SUBDIR += zidrav
SUBDIR += zisofs-tools

24
sysutils/zfsnap/Makefile Normal file
View file

@ -0,0 +1,24 @@
# New ports collection makefile for: zfsnap
# Date created: 2010-08-02
# Whom: Aldis Berjoza <aldis@bsdroot.lv>
#
# $FreeBSD$
#
PORTNAME= zfsnap
PORTVERSION= 1.1
CATEGORIES= sysutils
MASTER_SITES= http://files.bsdroot.lv/FreeBSD/distfiles/
DISTNAME= zfSnap-${PORTVERSION}
MAINTAINER= aldis@bsdroot.lv
COMMENT= Simple sh script to make zfs rolling snaphosts with cron
PLIST_FILES= sbin/zfSnap
NO_BUILD= yes
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/zfSnap.sh ${PREFIX}/sbin/zfSnap
.include <bsd.port.mk>

3
sysutils/zfsnap/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (zfSnap-1.1.tar.gz) = 82c34e42c5d1dba7cc42b2a53cd83787
SHA256 (zfSnap-1.1.tar.gz) = fe957b76f188af1a78bee6d72a41b8e0e8bb6d3b664204c31b5ff504af106e0f
SIZE (zfSnap-1.1.tar.gz) = 1833

View file

@ -0,0 +1,7 @@
zfSnap is very simple sh script to make periodic zfs snapshots with cron.
It will also delete old snapshots.
WWW: http://aldis.git.bsdroot.lv/zfSnap
-- Aldis Berjoza
<aldis@bsdroot.lv>