sysutils/restic: Add corrections to pkg-message

Add corrections about loading fusefs(5) module in /etc/rc.conf instead of
/boot/loader.conf.

Reported by:	arrowd, danfe, manu
This commit is contained in:
Nuno Teixeira 2024-04-04 10:06:23 +01:00
parent 1eaca5a2ab
commit e2f7e24d33
2 changed files with 6 additions and 8 deletions

View file

@ -1,7 +1,7 @@
PORTNAME= restic PORTNAME= restic
DISTVERSIONPREFIX= v DISTVERSIONPREFIX= v
DISTVERSION= 0.16.4 DISTVERSION= 0.16.4
PORTREVISION= 3 PORTREVISION= 4
CATEGORIES= sysutils CATEGORIES= sysutils
MAINTAINER= eduardo@FreeBSD.org MAINTAINER= eduardo@FreeBSD.org

View file

@ -2,17 +2,15 @@
{ type: install { type: install
message: <<EOM message: <<EOM
In order to mount locally a remote archive or an entire repository as a FUSE In order to mount locally a remote archive or an entire repository as a FUSE
filesystem, it is required to load fusefs module: filesystem, it is required to load fusefs(5) module:
# kldload fusefs # kldload fusefs
To load the module at boot time, add To load the module at boot time, add fusefs(5) module
fusefs_load="YES" to /etc/rc.conf by running:
to /boot/loader.conf by running: # sysrc kld_list+=fusefs
sysrc fusefs_load="YES"
Also, if you plan to mount restic repositories as non root user, you need to run Also, if you plan to mount restic repositories as non root user, you need to run
@ -22,7 +20,7 @@ and add the line
vfs.usermount=1 vfs.usermount=1
to /etc/sysctl.conf to ensure the setting is loaded at boot time. to /etc/sysctl.conf to ensure the setting is applied at boot time.
EOM EOM
} }
] ]