I am trying to fix some of the laptops at my uni.
I have been given the admin account to change the settings. What I am trying to do is make it so that no matter what state the previous person who logged in left the Airport, that when the current user signs in it turns the airport OFF
Now i have found that using
sudo ifconfig en1 down
works to turn the airport off
I have also learned to create a .command file (called startup.command) that starts
!# /bin/sh
which i then placed inside '/usr/sbin' and then in terminal use the commands
sudo chmod -x /usr/sbin/startup.command
sudo chmod 0777 /usr/sbin/startup.command
which technically should allow me to run the program as any user...
However, when i then set this program to run on startup under System Preferences->Accounts->student->login items and then add the startup.command file. I get an error that says
'The file "startup.command" could not be executed because you do not have appropriate access privileges'
I am assuming this is because my script is using sudo which requires a password
so i used
sudo visudo
and added the lines
ALL ALL=(root) NOPASSWD: /usr/sbin/startup.command
to the end of the files then hit 'Esc' and used
:x
which should save and exit the file (which then prompts me with sudoers.tmp saved)
when i log out and back in i still get the same error message about not having access privileges..
can anyone see a fatal flaw that i am missing?
also if there is a simpler way to turn off the airport when someone signs in im all ears.. and one last thing.. if there is a way to tell terminal to quit entirely after its run the startup.command so its not still in the dock that would be great
currently the shut down script i have tried which isnt working looks like this:
/bin/sh kill -3(ps wax | rep "[T]erminal.app" | awk '{print $1}')
Thank you in advance guys