Unable to automatically mount shared drive on boot (Mac)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2016 01:56 PM
I am trying to automatically mount a shared drive pointing to Webdav on a Yosemite mac. I am correctly able to connect, access Webdav, and copy files into the repository. I am also able to set the shared drive as a login item.
The problem comes when I reboot, it delivers an error. When I read the console, it says: "webdavfs_agent: Webdav FS authentication credentials are being sent insecurely to: http://address", then "webdavfs_agent: network_mount: network_stat returned error 2". I am still able to connect by clicking "connect to server" then selecting the saved connection, I do not have to reinput credentials or change the address in any way.
Any ideas what is going wrong? Replacing http with https does not allow me to connect at all.
The problem comes when I reboot, it delivers an error. When I read the console, it says: "webdavfs_agent: Webdav FS authentication credentials are being sent insecurely to: http://address", then "webdavfs_agent: network_mount: network_stat returned error 2". I am still able to connect by clicking "connect to server" then selecting the saved connection, I do not have to reinput credentials or change the address in any way.
Any ideas what is going wrong? Replacing http with https does not allow me to connect at all.
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2016 12:21 PM
I was able to fix the problem by creating an applescript to mount WebDAV then setting the script as a login item. Here is the script:
property username : "username"
property pass : "password"
tell application "Finder"
try
mount volume "http://" & username & ":" & pass & "@ipaddress/alfresco/webdav/Sites/site/documentLibrary"
end try
end tell
property username : "username"
property pass : "password"
tell application "Finder"
try
mount volume "http://" & username & ":" & pass & "@ipaddress/alfresco/webdav/Sites/site/documentLibrary"
end try
end tell
