1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

archivers/py-borgbackup: Update to 1.1.7

PR:		231079
Submitted by:	jjuanino@gmail.com (maintainer)
This commit is contained in:
Steve Wills 2018-09-02 16:14:23 +00:00
parent 0b6892018f
commit 1b9639162e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=478804
3 changed files with 26 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= borgbackup
DISTVERSION= 1.1.6
DISTVERSION= 1.1.7
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1529092806
SHA256 (borgbackup-1.1.6.tar.gz) = a1d2e474c85d3ad3d59b3f8209b5549653c88912082ea0159d27a2e80c910930
SIZE (borgbackup-1.1.6.tar.gz) = 3441523
TIMESTAMP = 1535819065
SHA256 (borgbackup-1.1.7.tar.gz) = f7b51a132e9edfbe1cacb4f478b28caf3622d79fffcb369bdae9f92d8c8a7fdc
SIZE (borgbackup-1.1.7.tar.gz) = 3446832

View File

@ -0,0 +1,22 @@
In order to mount locally a remote archive or an entire repository as a FUSE
filesystem, it is required to load fuse module:
# kldload fuse
To load the module at boot time, add
fuse_load="YES"
to /boot/loader.conf by running:
sysrc fuse_load="YES"
Also, if you plan to mount borg repositories as non root user, you need to run
# sysctl vfs.usermount=1
and add the line
vfs.usermount=1
to /etc/sysctl.conf to ensure the setting is loaded at boot time.