Re: Allow only root/admin users to execute the cocoa app
Re: Allow only root/admin users to execute the cocoa app
- Subject: Re: Allow only root/admin users to execute the cocoa app
- From: vincent habchi <email@hidden>
- Date: Sun, 24 Jan 2010 11:11:48 +0100
Le 24 janv. 2010 à 10:19, Arun a écrit :
> Hi All,
>
> I want to allow my cocoa app to be only launched by root/admin users.
> How can i achieve this?
That's Unix, not Cocoa. Either set you app to owner root (chown -R root.wheel myapp) and then chmod to 744 (chmod -R 700 myapp), so that nobody but root can execute it, or you can check the user id with getuid at an early stage of your program (the superuser uid is 0). Type 'man getuid' in Terminal.
Vincent_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden