Hi,
I'm trying to deploy a script to mount a share drive and getting the following:
Executing Policy test common share...
Running script test common share...
Script exit code: 1
Script result: mkdir: /Volumes/common_share: File exists
mount: realpath /Volumes/common_share: Permission denied
Script looks like this
!/bin/bash
sudo -u $3 mkdir "/Volumes/common_share"
sudo -u $3 mount -t smbfs "//sydmsoppfs01/common_share" "/Volumes/common_share"
