secubox-openwrt/package/secubox/secubox-app-smbfs/files/etc/config/smbfs
CyberMind-FR 79bb3c43f4 feat: Add smbfs mount manager, Jellyfin READMEs, Glances host visibility, planning updates
New secubox-app-smbfs package for SMB/CIFS remote directory management
with smbfsctl CLI (add/remove/mount/umount/test/status), UCI config,
auto-mount init script, and Jellyfin/Lyrion media path integration.

Glances LXC: host bind mounts (/rom, /overlay, /boot, /srv), Docker
socket fix (symlink loop), fs plugin @exit_after patch, hostname/OS
identity, pre-generated /etc/mtab.

KISS READMEs for secubox-app-jellyfin and luci-app-jellyfin. Planning
files updated with Domoticz IoT, AI Gateway strategy, App Store P2P
emancipation, and v2 roadmap items.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 21:02:46 +01:00

22 lines
557 B
Plaintext

# SecuBox SMB/CIFS Remote Mount Manager
# Each 'mount' section defines a remote SMB share
config smbfs 'global'
option enabled '1'
option mount_base '/mnt/smb'
option cifs_version '3.0'
option timeout '10'
# Example share (disabled by default):
# config mount 'media'
# option enabled '0'
# option server '//192.168.1.100/media'
# option mountpoint '/mnt/smb/media'
# option username 'guest'
# option _password ''
# option domain ''
# option cifs_version '3.0'
# option read_only '1'
# option auto_mount '1'
# option description 'Media library share'