Add SSHFS auto_mount example to group_vars

This commit is contained in:
Joshua Boniface 2023-11-08 12:33:21 -05:00
parent c8764159f6
commit 8ba0ca02b1
1 changed files with 4 additions and 0 deletions

View File

@ -271,10 +271,14 @@ pvc_autobackup:
mount_cmds: mount_cmds:
# This example shows an NFS mount leveraging the backup_root_path variable # This example shows an NFS mount leveraging the backup_root_path variable
#- "/usr/sbin/mount.nfs -o nfsvers=3 10.0.0.10:/backups {backup_root_path}" #- "/usr/sbin/mount.nfs -o nfsvers=3 10.0.0.10:/backups {backup_root_path}"
# This example shows an SSHFS mount leveraging the backup_root_path variable
#- "/usr/bin/sshfs user@hostname:/path {backup_root_path} -o default_permissions -o sshfs_sync -o IdentityFile=/path/to/id_rsa"
# These commands are executed at the end of the backup run and should unmount a filesystem # These commands are executed at the end of the backup run and should unmount a filesystem
unmount_cmds: unmount_cmds:
# This example shows a generic umount leveraging the backup_root_path variable # This example shows a generic umount leveraging the backup_root_path variable
#- "/usr/bin/umount {backup_root_path}" #- "/usr/bin/umount {backup_root_path}"
# This example shows an fusermount3 unmount (e.g. for SSHFS) leveraging the backup_root_path variable
#- "/usr/bin/fusermount3 -u {backup_root_path}"
# Configuration file networks # Configuration file networks
# > Taken from base.yml's configuration; DO NOT MODIFY THIS SECTION. # > Taken from base.yml's configuration; DO NOT MODIFY THIS SECTION.