25 lines
762 B
Plaintext
25 lines
762 B
Plaintext
# Local directory where the remote storages should be mounted to
|
|
LOCALMOUNTDIR=/home/user/remote
|
|
|
|
## mnt-sftp.sh
|
|
# Please insert predefined hosts in your SSH Config-file (default ~/.ssh/config). Please use keyfiles for passwordless authentication.
|
|
SSHCONFIG=$HOME/.ssh/config
|
|
|
|
# If you don't want to use your .ssh/config file or need to define the passwords manually, you can add predefined entries here.
|
|
# Format: user;;host;;port;;pass;;path
|
|
#PRESSH[0]='user1;;domain1.org;;22;;secretpassword1;;/'
|
|
#PRESSH[1]='user2;;domain2.org;;23;;secretpassword2;;/home/user2/'
|
|
|
|
|
|
## mnt-share.sh
|
|
NASIP='192.168.178.255'
|
|
NASDIR='Share'
|
|
NASUSER='user'
|
|
NASPASS='password'
|
|
|
|
|
|
## mnt-share2.sh
|
|
SHAREPATH[0]='0:192.168.178.255/Share'
|
|
SHAREUSER[0]='user'
|
|
SHAREPASS[0]='password'
|