I have some scheduled tasks whose results should go to a common computer so that other people can access them. That's why I have included in my .sh file a command such as
mount_smbfs //userassword@host/shared_folder /Volumes/shared_point
cp some_files
umount /Volumes/shared_point
The problem is that this script works perfectly when running from the Terminal but the samba remote volume refuses to mount when the process is activated from crontab.
Any ideas? Thanks in advance for the help.
mount_smbfs //userassword@host/shared_folder /Volumes/shared_point
cp some_files
umount /Volumes/shared_point
The problem is that this script works perfectly when running from the Terminal but the samba remote volume refuses to mount when the process is activated from crontab.
Any ideas? Thanks in advance for the help.