![](https://seccdn.libravatar.org/avatar/ec1dc92f581135e1d6bd88e9d8e051c3.jpg?s=120&d=mm&r=g)
Autoinstall gurus, I'm trying to mount an NFS share from a post-install script and it's failing with the error "mount: only root can do that". I threw a call to id in the script and it reports "uid=0(root) gid=0(root)", so I'm a little baffled. The mount can be performed manually during the install or after completion with no problem. Here's the relevant part of my XML configuration file (server IP faked): -------------------- <![CDATA[#!/bin/sh mkdir /mnt/resources id mount 1.2.3.4:/autoinst/SuSE9.0 /mnt/resources for MYSCRIPT in /mnt/resources/scripts/generic/A*; do $MYSCRIPT done > /var/adm/autoinstall/logs/generic.log 2>&1 umount /mnt/resources]]> -------------------- Does anybody have an idea what the issue could be? I need it to happen after the RPM installs. I suppose I could throw this in a one-time rc script, but I'd like to understand the underlying issue... Thanks, Roy