Newsroom Update

Beginning in May, a special Today at Apple series titled “Made for Business” will offer small business owners and entrepreneurs free opportunities to learn how Apple products and services can support their growth and success. Learn more >

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

FYI - Xsan 1.4.2 fixes acfsMounter script

For those of you who have StorNext MDCs and use the acfsMounter script to mount volumes it appears that Xsan 1.4.2 now uses the automount.plist file in /Library/Filesystems/Xsan/config.

Unfortunately they don't include the automount.plist example file so here is the code. Just replace the volume-name with your own.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>volume-name</key>
<dict>
<key>AutoMount</key>
<string>rw</string>
<key>MountOptions</key>
<dict/>
</dict>
</dict>
</plist>

Posted on Dec 4, 2007 3:59 PM

Reply
15 replies

Jan 17, 2008 5:57 AM in response to TGABTG

Hi,
I have worked with this for a while, and found out that the part with:
<key>volume-name</key>
<dict>
<key>AutoMount</key>
<string>rw</string>
<key>MountOptions</key>
<dict/>
<dict/>


might appear zero or more times. Some systems of me gets no default volumes mounted while others get 5. This can nicely be build this way.

An empty one looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" >" http://www.apple.com/DTDs/PropertyList-1.0.dtd ">
<plist version="1.0">
<dict>
</dict>
</plist>


Maybe this is valuable to someone.
Donald

Jan 24, 2008 2:37 AM in response to Donald Kok

Hi

I would like to use this script, but am still not experienced in this kind of scrips and the concequences of implementing them.
After update this client to Xsan 1.4.2. Xsan asks for automount.plist, like the expamle given.
I would like to mount my 3 volumes with this scipt. (eg vol1 to vol3) but I do not understand how it works. I try'd a emty playlist, but this results in a major kernel panic.and crash of xsan client

Robbert

Jan 24, 2008 4:11 AM in response to Robbert Fin

The automount.plist should be right, or you will have a kernel panic indeed!
You do not have to restart acfs or whatever though. Modifying the file is implementing it.

Here is an example:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" >" http://www.apple.com/DTDs/PropertyList-1.0.dtd ">
<plist version="1.0">
<dict>
<key>vol1</key>
<dict>
<key>AutoMount</key>
<string>rw</string>
<key>MountOptions</key>
<dict/>
</dict>
<key>vol2</key>
<dict>
<key>AutoMount</key>
<string>rw</string>
<key>MountOptions</key>
<dict/>
</dict>
</dict>
</plist>

Feb 13, 2008 9:30 AM in response to TGABTG

Could someone please explain the arguments "rw" for me and what their purpose is under the AutoMount key?

I am trying to not only mount my san under the /Volumes folder, but I am trying to make a softlink to /san which would be directly under the root.

I'm trying to find a dictionary for arguments used in a plist such as this but I'm having trouble.

Any light would be apprecited.

Feb 14, 2008 1:17 AM in response to TGABTG

Created automount.plist file as given above, but a volume hosted by StorNext MDC is not being mounted automatically on Xsan client machine.
While, this volume is mounted manually.

StorNext version(MDC) is 3.2
Xsan client machine : OS 10.5, Xsan 1.4.2

Is there anyone who has trouble in auto-mounting StorNext volume on Xsan client?

Thanks!

Steve

FYI - Xsan 1.4.2 fixes acfsMounter script

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.