So i made a Samba server.
Updater share in my smb.conf
Code:
[Updater]
valid users updater
comment = Updater Software
browseable = yes
create mask = 0755
dir mask = 0755
path = /filer/pxedata/scripts
guest ok = no
and mounted it with smbfs on my client in the fstab
Code:
//10.0.0.10/updater /updater smbfs user,credentials=/etc/samba/cred-file,uid=root,gid=root,file_mode=0755,dir_mode=0755 0 0
however when i go into /updater on my client, and try to run scripts in it.. it says "-bash: ./ipfinder.sh: Permission denied"
and my script does have +x on it, for uid, gid and all.
how can i make it run this script?