From 6a26d81c1108560f3ed9e982e9d073cb9743cb20 Mon Sep 17 00:00:00 2001 From: Radek Podgorny Date: Mon, 17 Jun 2024 18:02:01 +0200 Subject: [PATCH] remove deprecated "use_ino" option from examples and documentation --- examples/S01a-unionfs-live-cd.sh | 2 +- examples/unionfs-fuse-nfs-root | 2 +- man/unionfs.8 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/S01a-unionfs-live-cd.sh b/examples/S01a-unionfs-live-cd.sh index 786b37d9..918cff50 100755 --- a/examples/S01a-unionfs-live-cd.sh +++ b/examples/S01a-unionfs-live-cd.sh @@ -3,7 +3,7 @@ # Copyright: Bernd Schubert # BSD license, see LICENSE file for details -FUSE_OPT="-o allow_other,use_ino,suid,dev,nonempty" +FUSE_OPT="-o allow_other,suid,dev,nonempty" CHROOT_PATH="/tmp/unionfs" UNION_OPT="-ocow,chroot=$CHROOT_PATH,max_files=32768" diff --git a/examples/unionfs-fuse-nfs-root b/examples/unionfs-fuse-nfs-root index c4e50dfb..185c5c82 100755 --- a/examples/unionfs-fuse-nfs-root +++ b/examples/unionfs-fuse-nfs-root @@ -32,7 +32,7 @@ NET="192.168.1." NFS_SERV="192.168.55.86" NFS_OPT="-otcp,nfsvers=3,port=2049,rsize=8192,wsize=8192,nolock" -FUSE_OPT="-o default_permissions -o allow_other -o use_ino -o nonempty -o suid" +FUSE_OPT="-o default_permissions -o allow_other -o nonempty -o suid" UNION_OPT="-o cow -o noinitgroups" UPATH="/unionfs" diff --git a/man/unionfs.8 b/man/unionfs.8 index 7d7367a9..eefdb0dd 100644 --- a/man/unionfs.8 +++ b/man/unionfs.8 @@ -98,7 +98,7 @@ option on our own. .SH "EXAMPLES" .Vb 5 \& unionfs \-o cow,max_files=32768 \e -\& \-o allow_other,use_ino,suid,dev,nonempty \e +\& \-o allow_other,suid,dev,nonempty \e \& /u/host/etc=RW:/u/group/etc=RO:/u/common/etc=RO \e \& /u/union/etc .Ve