sudo equivalent configuration on Solaris 10
- by daedlus
I am looking to configure on Solaris 10 to achieve the below:
user=jon
group=jtu
jon is owner of /opt/app
user=ken
group=jtu
ken is owner of /data
On Linux I have added the below line
%jtu ALL= NOPASSWD: /bin/*, /usr/bin/*
so that jon is able to access /data/tmp and delete files.
This doesn't work on solaris10 since there is no sudo by default. How do I configure Solaris 10 so jon can delete files in /data/tmp?
Thanks