aboutsummaryrefslogtreecommitdiff
path: root/src/usr/bin/myautomountd
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/bin/myautomountd')
-rwxr-xr-xsrc/usr/bin/myautomountd2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/bin/myautomountd b/src/usr/bin/myautomountd
index 340ce04..06bb2da 100755
--- a/src/usr/bin/myautomountd
+++ b/src/usr/bin/myautomountd
@@ -120,7 +120,7 @@ trap '__ec=$? ; clean_automount ; trap "" 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
mkdir -p "${AUTOMOUNT_BASEDIR}"
# run initialization script as root
-$( which sudo 2>/dev/null ) /usr/libexec/myautomount/myautomount-initialize.sh
+$( which sudo 2>/dev/null ) AUTOMOUNT_USER="${USER}" /usr/libexec/myautomount/myautomount-initialize.sh
_response="${?}" ; test ${_response} -ne 0 && exit ${_response}
# MAIN
bgstack15